我试图修改现有的wordpress woocommerce单品短信,(即:[product id =" 2020"]
此短代码将按ID和说明显示产品。
我的目标是在普通"页面上使用修改后的短代码" &安培;使用图库(及其缩略图)显示产品,因为它将显示在每个产品页面上。
答案 0 :(得分:0)
function show_my_product_callback($atts)
{
$a = shortcode_atts(array(
'product_id' => ''),$atts );
echo get_the_title($a['product_id']);
echo get_the_content($a['product_id']);
}
add_shortcode( 'show_my_product', 'show_my_product_callback' );
使用它:[show_my_product product_id ='3']
更多的阅读资源。
get_post_meta - 用于自定义字段。
get_post_content - 用于产品说明。
get_the_title - 代表产品名称。