How to add wordpress specific post format -




how add worddpress specific post format? format want add -> doctor

http://354.today/wpscreen.jpg

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'.

https://codex.wordpress.org/post_formats





wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -