gpt4 book ai didi

wordpress - template_include 停止处理 woocommerce 更新

转载 作者:行者123 更新时间:2023-12-04 16:02:42 34 4
gpt4 key购买 nike

以下代码用于覆盖产品详细信息页面模板,自 WooCommerce 上次更新以来它一直在工作。任何人都可以帮助我解决这个问题,在此先感谢。

    add_filter('template_include', 'wpautomate_plugin_templates');
function wpautomate_plugin_templates( $template )
{
$plugin_path='';
$reflector = new ReflectionClass('Ze_Single_Product_Layout');
$file_name=plugin_dir_path($reflector->getFileName());
$plugin_path=$file_name;
$post_types = array('product');
$template_id=get_post_meta( get_the_ID(), '_product_layout', true );
if (is_singular('product') && !empty($template_id))
{
//render custom template for single product
$template = $plugin_path . 'template/woo-single-page.php';
}
return $template;

}//end of function

最佳答案

你需要调用这个过滤器

add_filter('template_include', 'wpautomate_plugin_templates');

初始化 Action 钩
add_action('init','load_custom_template_woo');
function load_custom_template_woo(){
add_filter('template_include', 'wpautomate_plugin_templates');
}

谢谢

关于wordpress - template_include 停止处理 woocommerce 更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50020403/

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