我正在开发一个 WooCommerce 插件(实际上是常用的 WP 插件,但仅在启用 WooCommerce 时才有效),它应该更改标准的 WooCommerce 输出逻辑。特别是我需要自己覆盖标准的 archive-product.php 模板。我发现在主题中更改模板没有问题,但在插件中无法做到这一点。在不改变 WP 和 WooCommerce 核心的情况下如何做到这一点?
问问题
3147 次
2 回答
2
我认为您需要通过 WooCommerce 可用的钩子(过滤器和操作)来完成。
这是一个列表: http ://docs.woothemes.com/document/hooks/#templatehooks
这是开始使用钩子的地方: http ://wp.tutsplus.com/tutorials/the-beginners-guide-to-wordpress-actions-and-filters/
于 2013-04-07T15:24:06.017 回答
0
这是我尝试这样的事情。希望它会有所帮助。
将此过滤器添加到您的插件中:
add_filter( 'template_include', 'my_include_template_function' );
然后回调函数将是
function my_include_template_function( $template_path ) {
if ( is_single() && get_post_type() == 'product' ) {
// checks if the file exists in the theme first,
// otherwise serve the file from the plugin
if ( $theme_file = locate_template( array ( 'single-product.php' ) ) ) {
$template_path = $theme_file;
} else {
$template_path = PLUGIN_TEMPLATE_PATH . 'single-product.php';
}
} elseif ( is_product_taxonomy() ) {
if ( is_tax( 'product_cat' ) ) {
// checks if the file exists in the theme first,
// otherwise serve the file from the plugin
if ( $theme_file = locate_template( array ( 'taxonomy-product_cat.php' ) ) ) {
$template_path = $theme_file;
} else {
$template_path = PLUGIN_TEMPLATE_PATH . 'taxonomy-product_cat.php';
}
} else {
// checks if the file exists in the theme first,
// otherwise serve the file from the plugin
if ( $theme_file = locate_template( array ( 'archive-product.php' ) ) ) {
$template_path = $theme_file;
} else {
$template_path = PLUGIN_TEMPLATE_PATH . 'archive-product.php';
}
}
} elseif ( is_archive() && get_post_type() == 'product' ) {
// checks if the file exists in the theme first,
// otherwise serve the file from the plugin
if ( $theme_file = locate_template( array ( 'archive-product.php' ) ) ) {
$template_path = $theme_file;
} else {
$template_path = PLUGIN_TEMPLATE_PATH . 'archive-product.php';
}
}
return $template_path;
}
我检查这个主题的第一次加载。如果在主题中找不到该文件,那么它将从插件加载。
您可以在此处更改逻辑。
希望它会做你的工作。
谢谢
于 2016-02-07T10:50:31.660 回答