madvogue29
Member
- Jun 4, 2020
- 30
- 6
- 8
Hi Team I am trying remove post title entry on WP if post type = "xyz" (a custom post type). is there a way to do so ?
Thanks
Thanks
are you want to remove post title from tag <title> ? </title> ??Hi Team I am trying remove post title entry on WP if post type = "xyz" (a custom post type). is there a way to do so ?
Thanks
function hide_cpt_title() {
remove_post_type_support('your-custom-post-type', 'title');
}
add_action('admin_init', 'hide_cpt_title');