Created
April 13, 2015 13:26
-
-
Save crumina/39011b4168075b24f7d2 to your computer and use it in GitHub Desktop.
remove meta from post
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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