我使用ACF在WordPress上创建了自定义古腾堡块。
但是我想锁定一些块,并保留无限使用我的其他自定义块的可能性。
我有一个简介块,我想放在第一个位置。
但是我有一个问题。当我使用WordPress template_lock
时,我所有其他自定义块都消失了(段落块,图像块...)
请问如何解决?并混合使用锁定块和空闲块。
function myplugin_register_template() {
$post_type_object = get_post_type_object( 'dissertation' );
$post_type_object->template = array(
array( 'acf/introduction')
);
$post_type_object->template_lock = 'all';
}
add_action( 'init', 'myplugin_register_template' );