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



_disable_block_editor_for_navigation_post_type › WordPress Function

Od5.9.0
Przestarzałyn/a
_disable_block_editor_for_navigation_post_type ( $value, $post_type )
Dostęp:
  • private
Parametry: (2)
  • (bool) $value Whether the CPT supports block editor or not.
    Wymagane: Tak
  • (string) $post_type Post type.
    Wymagane: Tak
Powrót:
  • (bool) Whether the block editor should be disabled or not.
Zdefiniowane na:
Codex:

Disables block editor for wp_navigation type posts so they can be managed via the UI.



Źródło

function _disable_block_editor_for_navigation_post_type( $value, $post_type ) {
	if ( 'wp_navigation' === $post_type ) {
		return false;
	}

	return $value;
}