无处不在的模板
为您的自定义帖子类型提供自定义模板。
用法
将pmg:templates支持添加到您的帖子类型。 这可以在帖子类型注册期间或事后完成。
// during registration
add_action ( 'init' , function () {
register_post_type ( 'some_type' , array (
// ...
'supports' => array (
'title' ,
'editor' ,
'pmg:templates' ,
),
));
});
// after registration
add_action ( 'init' , function () {
add_post_ty
2021-07-05 13:05:54
72KB
PHP
1