Skip to content

Instantly share code, notes, and snippets.

@crumina
Created April 13, 2015 13:26
Show Gist options
  • Save crumina/39011b4168075b24f7d2 to your computer and use it in GitHub Desktop.
Save crumina/39011b4168075b24f7d2 to your computer and use it in GitHub Desktop.
remove meta from post
<?php
function _remove_meta_from_posts() {
remove_action('reactor_post_header', 'reactor_do_post_header_meta', 3);
}
add_action( 'init', '_remove_meta_from_posts', 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment