作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码用于覆盖产品详细信息页面模板,自 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');
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/
我目前正在编写一个 WP 插件,需要覆盖模板。 我的过滤器钩子(Hook)看起来像这样 - 它执行: add_filter('template_include', 'mcd_set_template'
以下代码用于覆盖产品详细信息页面模板,自 WooCommerce 上次更新以来它一直在工作。任何人都可以帮助我解决这个问题,在此先感谢。 add_filter('template_includ
我是一名优秀的程序员,十分优秀!