TemplatesEverywhere 轻松添加自定义模板至自定义帖子类型

manufacture5177 1 0 zip 2024-10-27 17:10:27

TemplatesEverywhere 为您的自定义帖子类型提供自定义模板。通过在注册期间或注册后添加 pmg:templates 支持,即可轻松实现此功能。以下是具体的使用方法:

1. 在注册期间添加模板支持


add_action('init', function() {

    register_post_type('some_type', array(

        // ...

        'supports' =>; array('title', 'editor', 'pmg:templates'),

    ));

});

2. 在注册后添加模板支持


add_action('init', function() {

    add_post_type_support('some_type', 'pmg:templates');

});

提示:使用 pmg:templates 支持为您的自定义帖子类型创建个性化模板,提升内容展示的独特性和专业性。

用户评论
请输入评论内容
评分:
暂无评论