kaeloz
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Highlighting current postI used the code of machinetype (thanks), but instead of highlight like this:
post 1
post 2
“post 3 highlight”
post 4Put some other title down the other post title, like this:
post 1
post 2
post 3
post 4
“post 3 highlight”Is that what it spouse to do, or I put it wrong?
Forum: Plugins
In reply to: Display list of posts per archive categoryYou can look for the category-magic plugin. It’s easy to use. Or you can look here: http://wordpress.org/support/topic/112171?replies=3
Forum: Fixing WordPress
In reply to: List post titles by category and month<h2>Category name</h2>
- <?php global $post;
- “><?php the_title(); ?>
$myposts = get_posts(‘numberposts=15&category=’.$cat);
foreach($myposts as $post) :
setup_postdata($post);
?><?php endforeach; ?>
I hope this can help. Work’s for me.
Forum: Fixing WordPress
In reply to: How to exclude sidebar from a certain categoryWhat I did was to create an other sidebar template called: “sidebar_3” and include this code in the “category_3” template.
<?php include (TEMPLATEPATH . “/sidebar_3.php”); ?>
Of course inside the loop.
Viewing 4 replies - 1 through 4 (of 4 total)