wpseek.com
WordPress开发者和主题制作者的搜索引擎



_disable_content_editor_for_navigation_post_type › WordPress Function

Since5.9.0
已弃用n/a
_disable_content_editor_for_navigation_post_type ( $post )
访问:
  • private
参数:
  • (WP_Post) $post An instance of WP_Post class.
    Required: Yes
定义在:
文档:

This callback disables the content editor for wp_navigation type posts.

Content editor cannot handle wp_navigation type posts correctly. We cannot disable the "editor" feature in the wp_navigation's CPT definition because it disables the ability to save navigation blocks via REST API.


源码

function _disable_content_editor_for_navigation_post_type( $post ) {
	$post_type = get_post_type( $post );
	if ( 'wp_navigation' !== $post_type ) {
		return;
	}

	remove_post_type_support( $post_type, 'editor' );
}