wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



_enable_content_editor_for_navigation_post_type › WordPress Function

Od5.9.0
Przestarzałyn/a
_enable_content_editor_for_navigation_post_type ( $post )
Dostęp:
  • private
Parametry:
  • (WP_Post) $post An instance of WP_Post class.
    Wymagane: Tak
Zobacz:
Zdefiniowane na:
Codex:

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.


Źródło

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' );
}