Hi, Many wordpress users wants to hide sub categories in their blog. To accomplish this, it is very easy task. For that you need to add this code in style.css of your theme: .children { display:none; } Note: This hack should be work with selected theme. If it does not work then you need to [...]
READ MORE »Posts in category WordPress KB
Conditional Tags In WordPress
Hi, These are the Conditional Tags that can be used within your wordpress blog: is_home() is_single() is_page() is_category() is_author() is_date() is_year() is_month() is_day() is_time() is_archive() is_search() is_paged() is_404() We can use any of these conditional tags in the post meta area. For example, I want to display comments button but I do not want to [...]
READ MORE »How To Separate Categories With Blogroll In WordPress
Hi, WordPress blogroll has gone through many changes over the past year and a lot of the WordPress themes authors out there did not update their themes with the new code used to call the blogroll. The old code still works but it does not give you the advantage of the new blogroll capabilities. If [...]
READ MORE »How To Hide Individual Page In WordPress Blog
Hi, In many cases we need to hide the page from the menu or on the list. This should be the code for the menu in your theme: <?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’);?> If you have created a page but do not want to display it in blog menu then you need to add an exclude command and [...]
READ MORE »Case Study: XML Parsing Error: XML or text declaration not at start of entity
Hi, Problem Summary: Receiving this error message When we have tried to access the RSS of wordpress blog: XML Parsing Error: XML or text declaration not at start of entity / Error on line xxx: The processing instruction target matching” [xX] [mM] [IL] “is not allowed Possible Solutions: After a long investigation I have found [...]
READ MORE »How To Set Different Style For Author’s Comment In WordPress Blog
Hi, Many wordpress users style the author comment for their blog which will differentiate the comment from others. You can easily adjust your wordPress theme to display different styles for each author. For that you need to adjust the code of comments.php file of your theme. For that you need to perform these steps: 1) [...]
READ MORE »How To Remove Post Title In WordPress Blog
Hi, Many wordpress users sometimes needs to remove their post tile. In that case refer these steps: 1) Open the index.php file of your active theme. 2) Find this code: <h2><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></a></h2> 3) Remove this code and save the file. Note: Whenever you change [...]
READ MORE »Case Study: Can Not Publish A Post – WordPress Blog
Hi, Problem Summary: I have setup the wordpress blog and it was working fine until last night. But today, I can navigate my blog without any issue. I can create a post without any problems and autosave works fine. But when I publish the post it throws the error message: can not publish a post. [...]
READ MORE »













