Hi, Many wordpress users wants to display Category Pages instead of Post titles. For that you need to perform these steps: 1) Open archive.php file of your theme. 2) Remove the code between the loops. Loop starts at: <?php if (have_posts()) : while (have_posts()) : the_post(); ?> Loop End: <?php endif; ?> 3) Add this [...]
READ MORE »Posts in category WordPress KB
How To Add Author Page in WordPress Blog
Hi, In order to create an author page you will need to copy of archives.php file of your theme and rename it with author.php name. Now, upload author.php into site via FTP. Go into theme and edit the author.php page which is just created. From here, it will vary a little bit depending on theme [...]
READ MORE »Case Study: Category Not Updated – WordPress Error
Hi, Problem Summary: I tried to change the slug of a category to “personal” in wordpress and got the wordpress message saying “Category not updated“. Possible Solution: It is due to the category slugs can not be the same as tag slugs in the wp-terms table. In order to resolve it you need to perform [...]
READ MORE »How To Remove Ads From Individual Categories
Hi, Many wordpress users uses ads on their blog. But in some cases we may require that Ads can not be displayed on specific category. In this case you need add this code into your blog around your advertisement code: <?php if ( !in_category(1) && !in_category(11) ) { ?> This is your existing advertising code. [...]
READ MORE »How To Display Post Excerpt In WordPress
Hi, As a wordpress user you may need to show only a short excerpt of the post on blog homepage. This can be for a variety of reasons, ranging from attempting to increase page views to trying to make homepage more easily navigated and organized. Another really popular place for using the post excerpt is [...]
READ MORE »How to add new profile field to sign up form: Buddypress
How to new profile field to sign up form: Buddypress By default, wordpress MU comes with a register.php file, with the following fields: Blog subdomain/username Email Address And blog title However, once you install buddypress, you can add more fields and get more details about your new members. 1) Login to your WPMU admin panel [...]
READ MORE »How To Convert Author Display With Link To The Author
Hi, Many themes are created to simply display the author’s name using the username text by default instead of converting it to a link to the author’s website. We need to simple edit the code to make in order to display author website link in his post. For that you need to edit the page.php [...]
READ MORE »How To Add Tweet This Button In WordPress Theme
Hi, A “Tweet This” is an idea to add a link on your blog that web users can simple click to discuss the post on Twiter.com. If you like to add “Tweet This” link into your blog post then add this code in the loop: <a href=”http://twitter.com/home?status=Currently reading <?php the_permalink(); ?>” title=”Click to send this [...]
READ MORE »













