Add or remove theme support custom post type

Add code to file functions.php

  1. Code add theme support
/**
 * Enables the Excerpt meta box in Page edit screen.
 */
function wpcodex_add_excerpt_support_for_pages() {
	add_post_type_support( 'page', 'excerpt' );
}
add_action( 'init', 'wpcodex_add_excerpt_support_for_pages' );

2. Code remove

function my_custom_init() {
	remove_post_type_support( 'post', 'excerpt' );
}
add_action( 'init', 'my_custom_init' );

Leave a Reply

Your email address will not be published. Required fields are marked *