Created
February 13, 2019 04:05
-
-
Save generatepress/18a46cb723eb8f1bb198d620b8d36814 to your computer and use it in GitHub Desktop.
Choose which post types you're entry meta displays on. Wrapped in after_setup_theme to fire later.
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
add_action( 'after_setup_theme', function() { | |
add_filter( 'generate_entry_meta_post_types', function( $types ) { | |
$types[] = 'my-post-type'; | |
$types[] = 'recipes'; | |
return $types; | |
} ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment