Skip to content

Instantly share code, notes, and snippets.

@anwerashif
Created November 5, 2017 15:54
Show Gist options
  • Save anwerashif/4fa89d2089cd28abed3c41dd8ab5cb40 to your computer and use it in GitHub Desktop.
Save anwerashif/4fa89d2089cd28abed3c41dd8ab5cb40 to your computer and use it in GitHub Desktop.
Remove Post Meta From Blog Posts Page
<?php
// Do NOT include the opening PHP tag
// Remove Post Meta From Blog Posts Page
add_filter( 'genesis_post_meta', 'remove_post_meta_home_page' );
function remove_post_meta_home_page($post_meta) {
if ( is_home() ) {
$post_meta = '';
return $post_meta;
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment