How to add wordpress specific post format -
how add worddpress specific post format? format want add -> doctor
i try code , code not working
add_action('init', 'my_theme_slug_add_post_formats_to_page', 11); function my_theme_slug_add_post_formats_to_page(){ add_post_type_support( 'doctor', 'post-formats' ); register_taxonomy_for_object_type( 'post_format', 'doctor' );
}
you can add post formats custom post type of 'doctor', cannot create own custom post format called 'doctor'.
wiki
Comments
Post a Comment