Trying to register 4 custom post types. The only one showing up is the first one registered in my functions.php file, the others never show up in the UI. I can't figure out what's wrong, help!?
Trying to register 4 custom post types. The only one showing up is the first one registered in my functions.php file, the others never show up in the UI. I can't figure out what's wrong, help!?
Thanks @sivel
Don't see a response here but your add_action refers to 'create_post_types' and the function is create_post_type so one of them needs fixing.
add_action('init','create_post_types');
function create_post_type() {This topic has been closed to new replies.