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



_enable_content_editor_for_navigation_post_type › WordPress Function

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

This callback enables content editor for wp_navigation type posts.

We need to enable it back because we disable it to hide the content editor for wp_navigation type posts.


源码

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

	add_post_type_support( $post_type, 'editor' );
}