WooCommerce 产品附加信息简码
WooCommerce product additional information shortcode
我是 WooCommerce 的新手,正在寻找在 post 页面上显示 产品属性 的解决方案。
我进行了研究和一些测试,但似乎没有任何效果。
理想情况下,我想使用 简码 获取 产品 ID 并在我的 [=21= 上显示他的所有产品属性] 页。
像 [product_page id="99" display_only_attributes ]
这是在自定义简码中获取产品属性的方法,您可以在其中将产品 ID 定义为简码参数 id
.
函数代码:
if ( ! function_exists( 'display_product_additional_information' ) ) {
function display_product_additional_information($atts) {
// Shortcode attribute (or argument)
$atts = shortcode_atts( array(
'id' => ''
), $atts, 'product_additional_information' );
// If the "id" argument is not defined, we try to get the post Id
if ( ! ( ! empty($atts['id']) && $atts['id'] > 0 ) ) {
$atts['id'] = get_the_id();
}
// We check that the "id" argument is a product id
if ( get_post_type($atts['id']) === 'product' ) {
$product = wc_get_product($atts['id']);
}
// If not we exit
else {
return;
}
ob_start(); // Start buffering
do_action( 'woocommerce_product_additional_information', $product );
return ob_get_clean(); // Return the buffered outpout
}
add_shortcode('product_additional_information', 'display_product_additional_information');
}
代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。
短代码用法 (已更新)
具有定义的产品 ID:
[product_additional_information id='37']
或在php中:
echo do_shortcode("[product_additional_information id='37']");
在现有产品页面中 (例如,当 "additional information" 产品标签被删除时):
[product_additional_information]
或在php中:
echo do_shortcode("[product_additional_information]");
你会得到这样的东西:
我是 WooCommerce 的新手,正在寻找在 post 页面上显示 产品属性 的解决方案。 我进行了研究和一些测试,但似乎没有任何效果。
理想情况下,我想使用 简码 获取 产品 ID 并在我的 [=21= 上显示他的所有产品属性] 页。
像 [product_page id="99" display_only_attributes ]
这是在自定义简码中获取产品属性的方法,您可以在其中将产品 ID 定义为简码参数 id
.
函数代码:
if ( ! function_exists( 'display_product_additional_information' ) ) {
function display_product_additional_information($atts) {
// Shortcode attribute (or argument)
$atts = shortcode_atts( array(
'id' => ''
), $atts, 'product_additional_information' );
// If the "id" argument is not defined, we try to get the post Id
if ( ! ( ! empty($atts['id']) && $atts['id'] > 0 ) ) {
$atts['id'] = get_the_id();
}
// We check that the "id" argument is a product id
if ( get_post_type($atts['id']) === 'product' ) {
$product = wc_get_product($atts['id']);
}
// If not we exit
else {
return;
}
ob_start(); // Start buffering
do_action( 'woocommerce_product_additional_information', $product );
return ob_get_clean(); // Return the buffered outpout
}
add_shortcode('product_additional_information', 'display_product_additional_information');
}
代码进入您的活动子主题(或活动主题)的 function.php 文件。已测试并有效。
短代码用法 (已更新)
具有定义的产品 ID:
[product_additional_information id='37']
或在php中:
echo do_shortcode("[product_additional_information id='37']");
在现有产品页面中 (例如,当 "additional information" 产品标签被删除时):
[product_additional_information]
或在php中:
echo do_shortcode("[product_additional_information]");
你会得到这样的东西: