Tips & Tricks
Tips and Tricks about Wordpress and Blogs in general. Link Building Tips, Tips to promote your blog, Tips to become a better blogger, How-to’s, How to make money, 10 tips to…, How To, How to about wordpress, How to install themes, How to install plugins, how to write a better article.
By Santiago on March 15, 2009
If, for whatever reason, you don’t want certain categories to be displayed, paste this code into The Loop. Note – Replace “6″ with the number corresponding to the category you want to block. <?php if ( have_posts() ) : query_posts($query_string .’&cat=-6′); while ( have_posts() ) : the_post(); ?>
Posted in Tips & Tricks | Tagged Category, How To, The Loop |
By Santiago on March 11, 2009
Some themes requires that you fill a form field with a category ID, generally in custom theme admin section. It may be easy to find a category ID if you’re an advanced WordPres user, but what about beginners? Here’s a very simple way to find any category ID. Once you’re logged in your WordPress dashboard, [...]
Posted in Tips & Tricks | Tagged Category, Category ID, Find, How To |
How to Add a Unique Identifier to Each Comment
By Santiago on March 14, 2009
Easy, trick is by giving each comment a unique identifier. To do this, simple make use of “the_ID” in The Loop.
Posted in Tips & Tricks | Tagged Comments, How To, The Loop | Leave a response