Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created February 13, 2019 04:05
Show Gist options
  • Save generatepress/18a46cb723eb8f1bb198d620b8d36814 to your computer and use it in GitHub Desktop.
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.
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