-
get the date format
<?php echo date_i18n( get_the_date(‘m-d-Y’) );?> vs. <?php echo date_i18n( the_date(‘m-d-Y’) );?> get_the_date posts a date even for blogs time-stamped the same day. the_date posts the first of blogs time-stamped the same day.
-
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”); } ?>