Enable “Post Formats” Just For a “Custom Post Type” And Not Others In WordPress

I found the answer here.

function remove_pf() {
    remove_meta_box( 'formatdiv','post','normal' );
}
add_action( 'admin_menu', 'remove_pf' );

Leave a Comment