remove_post_type_support()

You are here:
  • Help
  • remove_post_type_support()

remove_post_type_support( string $post_typestring $feature )

Remove support for a feature from a post type.

Parameters Parameters

$post_type

(string) (Required) The post type for which to remove the feature.

$feature

(string) (Required) The feature being removed.


Top ↑

More Information More Information

All features are directly associated with a functional area of the edit screen, such as the editor or a meta box. Additionally, the ‘revisions’ feature dictates whether the post type will store revisions, and the ‘comments’ feature dictates whether the comments count will show on the edit screen.

Typically remove_post_type_support() should be attached to the ‘init’ action hook.

Possible values of parameter $feature

  • ‘title’
  • ‘editor’ (content)
  • ‘author’
  • ‘thumbnail’ (featured image) (current theme must also support Post Thumbnails)
  • ‘excerpt’
  • ‘trackbacks’
  • ‘custom-fields’
  • ‘comments’ (also will see comment count balloon on edit screen)
  • ‘revisions’ (will store revisions)
  • ‘page-attributes’ (template and menu order) (hierarchical must be true)
  • ‘post-formats’ removes post formats, see Post Formats

Top ↑

Source Source

File: wp-includes/post.php

1879
1880
1881
1882
1883
function remove_post_type_support( $post_type, $feature ) {
    global $_wp_post_type_features;
 
    unset( $_wp_post_type_features[ $post_type ][ $feature ] );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.
Was this article helpful?
Dislike 0
Views: 16