Jim Bob
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Very weird bugWhat happened was the Seo plugins that remove the “/category/” were causing this problem. I haven’t actually figured out how to make it work since at the moment I’m testing the website with default “?cat=39” type of links.
thanks adinusmail, that code worked. i just changed the ‘image’ to the my fields name.
Forum: Plugins
In reply to: [Page-list] [Plugin: Page-list] Multicolumn listsThanks I just tweeked it a little and now its fine.
Forum: Plugins
In reply to: [Page-list] [Plugin: Page-list] Multicolumn listsThanks got it.
Have found the code in the forum.
<?php
$key_name = get_post_custom_values($key = ‘Key Name’);{
echo $key_name[0];
}?>
Thank you Justin Tadlock.
Forum: Fixing WordPress
In reply to: How to turn query into a linkand here is the code if you also want to show the comments
<?php comments_popup_link( 'No comments yet', '1 comment', '% comments', 'comments-link', 'Comments are off for this post'); ?>put that before:
<?php endwhile; ?>Forum: Fixing WordPress
In reply to: How to turn query into a linkNevermind, have found the code online..
<?php query_posts('cat=1'.'&orderby=date&order=desc'); ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink(); ?>"> <?php the_title(); ?></a></li> <?php endwhile; ?>Thank you for the tip, it worked. Can you tell me how I can get rid of the black border though?