How to Display any RSS Feed icon on Your WordPress Site

Best way to put RSS feed icon is text widget. You can put RSS feed icon using text widgest. Go to widgets section and in sidebar put one text widget. Just copy paste the following code in text widget. <a … Continue reading

How to add custom header, footer, or sidebar for different categories – WordPress

If you want to add the different header for each category then use the following code in your index.php where “get_header()” method is called. <?php if (is_category(‘new_category’)) { get_header(‘ new_category ‘); } else { get_header(); } ?> Create the Header-new_category.php … Continue reading

Best 7 Cheat Sheets for creating the WordPress Themes and Plugins

Here is the list of cheat sheets which are very useful when your developing new theme or plugin. WordPress Theme Development Checklist Download PDF : Download Cheat Sheet » Source : wptoy.com WordPress CheatSheet Download PDF : Download Cheat Sheet … Continue reading