-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponent.php
54 lines (49 loc) · 1.23 KB
/
component.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
/**
* Wrap classic block content in a block, for formatting
*
* @package WP-Theme-Components
* @subpackage classic-block-wrapper
* @author Cameron Jones
* @version 1.0.1
*/
namespace WP_Theme_Components\Classic_Block_Wrapper;
/**
* Bail if accessed directly
*
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
die();
}
/**
* Wrap classic block content in a block, for formatting
*
* @since 1.0.0
* @param string $block_content Block content.
* @param array $block Block object.
* @return string
*/
function wrap_classic_posts( $block_content, $block ) {
if ( use_block_editor_for_post_type( get_post_type() ) ) {
if ( is_null( $block['blockName'] ) && ! empty( trim( $block_content ) ) ) {
$block_content = sprintf(
'<div class="wp-block-classic">%1$s</div>',
$block_content
);
}
}
return $block_content;
}
add_filter( 'render_block', __NAMESPACE__ . '\\wrap_classic_posts', 10, 2 );
/**
* Return whether a post type is compatible with the block editor.
*
* @since 1.0.1
* @param string $post_type The post type.
* @return bool
*/
function use_block_editor_for_post_type( $post_type ) {
require_once ABSPATH . 'wp-admin/includes/post.php';
return \use_block_editor_for_post_type( $post_type );
}