将产品标签移动到 WooCommerce 产品描述
Move product tags to WooCommerce product description
我需要将产品标签移到 WooCommerce 产品描述的底部。
我正在使用 "" 真正有效的答案代码,我在产品说明下方得到文本 "This is the last line in the description"...
现在我想添加产品元信息(产品 SKU 和标签),但我不知道该怎么做。
感谢任何帮助。
我正在使用店面子主题......
产品元数据以模板显示single-product/meta.php
,因此您只需使用专用函数wc_get_template()
调用它即可。
现在,由于这是在使用变量返回显示的过滤器挂钩中使用的,因此您需要启用 PHP 缓冲…
这是最终代码:
// remove the product meta data
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
add_filter( 'the_content', 'woocommerce_product_description_and_meta' );
function woocommerce_product_description_and_meta( $content ) {
// Only for single product pages (woocommerce)
if ( is_product() ) {
global $post, $product;
ob_start(); // Start buffering
// The product meta information
wc_get_template( 'single-product/meta.php' );
// Inserting the product meta information display at the end
$content .= ob_get_clean(); // append the buffered display
}
return $content;
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。
以不同的方式完成:
我需要将产品标签移到 WooCommerce 产品描述的底部。
我正在使用 "
现在我想添加产品元信息(产品 SKU 和标签),但我不知道该怎么做。
感谢任何帮助。
我正在使用店面子主题......
产品元数据以模板显示single-product/meta.php
,因此您只需使用专用函数wc_get_template()
调用它即可。
现在,由于这是在使用变量返回显示的过滤器挂钩中使用的,因此您需要启用 PHP 缓冲…
这是最终代码:
// remove the product meta data
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
add_filter( 'the_content', 'woocommerce_product_description_and_meta' );
function woocommerce_product_description_and_meta( $content ) {
// Only for single product pages (woocommerce)
if ( is_product() ) {
global $post, $product;
ob_start(); // Start buffering
// The product meta information
wc_get_template( 'single-product/meta.php' );
// Inserting the product meta information display at the end
$content .= ob_get_clean(); // append the buffered display
}
return $content;
}
代码进入您的活动子主题(或活动主题)的 functions.php 文件。已测试并有效。
以不同的方式完成: