kandsadv
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: CSS/Theme Cache ProblemWhat was the resolution to this issue, I’m facing the same problem?
Forum: Fixing WordPress
In reply to: Recent Posts List won’t LinkDoes this help?
<div class=”recent-post”>
<h3>Recent Posts</h3>
<?php $recent_posts = get_posts(‘numberposts=10’); ?>
<?php if(count($recent_posts) > 0) : ?>- <?php foreach($recent_posts as $p) : ?>
- “><?php echo $p->post_title ?>
<?php endforeach; ?>
<?php endif; ?>
</div>Forum: Fixing WordPress
In reply to: Recent Posts List won’t LinkNot really sure, I had the template created for me.
Forum: Themes and Templates
In reply to: Categories Won’t Display in Correct OrderI notice what you were talking about now with the sitemap/sitemap/ problem. Any suggestions for someone with very minimal php experience on how to call the right directory for those items?
Forum: Themes and Templates
In reply to: Categories Won’t Display in Correct OrderI was able to contact the person who coded this and he noticed that the navigation was calling the categories to be ordered by ID:
$navigation = get_categories(‘orderby=ID&order=asc&hide_empty=0&hierarchical=0&parent=’.$sitemap->term_id);
I removed the ‘orderby=ID’ and the navigation is working fine now.
I’ll see if I can do the same for the footer. I’ll also check into the validation errors, thanks for your help!
Forum: Themes and Templates
In reply to: Categories Won’t Display in Correct OrderI just upgraded to 2.8 this morning. I created the layout for the site and outsourced the coding, do you think they removed the hook? If so is there an easy way to add that back in or do I need to contact the people who created the template? Thanks for your help.