给wordpress添加带区块编辑器的文章类型

给wordpress添加带区块编辑器的自定义文章类型 add_action( 'init', function() { $args = array( 'public' => true, 'label' => 'News', 'show_in_rest' => true, 'template_lock' => 'all', 'template' => array( array( 'core/paragraph', array( 'placeholder' => 'wodepress', ) ), ), 'supports' => array( '…