wpseek.com
A WordPress-centric search engine for devs and theme authors



use_block_editor_for_post › WordPress Function

Since5.0.0
Deprecatedn/a
use_block_editor_for_post ( $post )
Parameters:
  • (int|WP_Post) $post Post ID or WP_Post object.
    Required: Yes
Returns:
  • (bool) Whether the post can be edited in the block editor.
Defined at:
Codex:
Change Log:
  • 6.1.0

Returns whether the post can be edited in the block editor.



Source

function use_block_editor_for_post( $post ) {
	$post = get_post( $post );

	if ( ! $post ) {
		return false;
	}

	// We're in the meta box loader, so don't use the block editor.
	if ( is_admin() && isset( $_GET['meta-box-loader'] ) ) {
		check_admin_referer( 'meta-box-loader', 'meta-box-loader-nonce' );
		return false;
	}

	$use_block_editor = use_block_editor_for_post_type( $post->post_type );

	/**
	 * Filters whether a post is able to be edited in the block editor.
	 *
	 * @since 5.0.0
	 *
	 * @param bool    $use_block_editor Whether the post can be edited or not.
	 * @param WP_Post $post             The post being checked.
	 */
	return apply_filters( 'use_block_editor_for_post', $use_block_editor, $post );
}