MKULTRON
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Styling individual widgets with background imagesThat works absolutely perfectly, thank you so much!
Forum: Themes and Templates
In reply to: Styling individual widgets with background imagesHi guys, all I have right now in functions.php is the following:
<?php if ( function_exists('register_sidebar') ) register_sidebar(array('name'=>'sidebar'));Am I right in saying each widget has its own id anyway? So I guess I could style them individually, though this could be a cumbersome approach, especially if I wanted to change to a new widget.
Thanks
Forum: Themes and Templates
In reply to: Css problem – similar widgets look differentNever mind, I’ll work it out.
Forum: Themes and Templates
In reply to: Retaining template across pages on clicking next/previous postsSorry, single.php works just fine! Getting confused over my templates a little at this stage.
Basically I have custom template pages like this:
http://sistersnoir.com/blog/laurence-cade-2/
and the banner at the top “the journal of…” is specific to this page.
When I click on the previous post “still life” at the moment, near the bottom of the page, it takes me to the last of Laurence’s posts but the banner is the default site banner (as it’s a different template). I guess I want the previous posts of this author to load on the same template.
Forum: Themes and Templates
In reply to: Next and Previous posts for specific categories onlyIs there a way to specify a template to load this in:
<?php previous_post_link(‘%link’, ‘Previous in cat’, true, ‘Uncategorized’); ?>
e.g. the current template I’m on so that clicking on a “previous” link doesn’t take me directly to the archives pages which is the wrong template?
Forum: Themes and Templates
In reply to: Custom page loop problemjust stylistic
EDIT
Seems to be working fine now!
Forum: Fixing WordPress
In reply to: Specific user post pagesThat works great, thank you! Have it set up like this:
<?php query_posts( ‘posts_per_page=3 && author=1’ ); ?>
Another problem i didn’t realise before, but my “Newer” / “Older” links don’t appear to be working, have them set up like:
<div class=”pagination”>
-
<li class=”older”><?Php previous_posts_link(‘Older’) ?>
<li class=”newer”><?php next_posts_link(‘Newer’) ?></div>
Any ideas? Thanks so much for your help
MK