Custom Post Types Not Working
-
I am trying to add the player in for custom post types but I don’t see the metabox on the post type page nor do I see the post types appear on the plugin settings page. I am using these filters:
add_filter( ‘beyondwords_post_types’, ‘connect_beyondwords_post_types’ );
add_filter( ‘beyondwords_settings_post_types’, ‘connect_beyondwords_post_types’ );
function connect_beyondwords_post_types( $post_types ) {
// $post_types contains the currently-supported post types
array_push($post_types, ‘insights’, ‘leadership_story’);
return $post_types;
}
Please help.
[ Don’t bump ]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Custom Post Types Not Working’ is closed to new replies.