gpt4 book ai didi

plugins - 如何在我的插件中创建模板文件?

转载 作者:行者123 更新时间:2023-12-02 22:15:59 24 4
gpt4 key购买 nike

我在 wordpress 插件目录中为自定义页面创建了一个模板文件,但找不到正确的路径。这段代码不起作用:

update_post_meta( $pas_tasks_page_id, '_wp_page_template', dirname( __FILE__ ) . '/task-list-template.php' );

只有当我手动将模板文件放入 wordpress 主题并将代码更改为:

update_post_meta( $pas_tasks_page_id, '_wp_page_template', '/task-list-template.php' );

但作为插件开发人员,我想在我的插件目录中创建新模板,而不是手动创建。我应该怎么做?

最佳答案

我最近使用“template_include”过滤器做了类似的事情。我是这样做的:

function include_template_files() {
$plugindir = dirname( __FILE__ );

if (is_post_type_archive( 'post-type-name' )) {
$templatefilename = 'archive-post_type_name.php';
$template = $plugindir . '/theme_files/' . $templatefilename;
return $template;
}

if ('post-type-name' == get_post_type() ){
$templatefilename = 'single-post-type-name.php';
$template = $plugindir . '/theme_files/' . $templatefilename;
return $template;
}
}
add_filter( 'template_include', 'include_template_files' );

我只是使用 wordpress 条件来检查请求的是什么模板,然后在我的插件目录中创建了一个“theme_files”文件夹,并将适当命名的 wordpress 模板文件放在那里。这是为自定义帖子类型创建一个单一的存档模板。

关于plugins - 如何在我的插件中创建模板文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14446251/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com