Category: code

  • hide menus

    Menu Items Visibility Control Control the display logic of individual menu items via php code By Hassan Derakhshandeh Function reference  

  • hide categories from home or page

    To hide posts from homepage. Place in index.php, post page or template page <?php if (is_home()) { query_posts(“cat=-3”); } ?> To hide posts from specific page. Place in index.php, post page or template page <?php if (is_page(‘name’)) { query_posts(“cat=-3”); } ?>