在woocommerce产品标题之后添加脚本

时间:2018-04-18 06:47:33

标签: php wordpress woocommerce

我想在我的woocommerce产品页面上产品标题后显示wordpress短代码

有谁知道我怎么做到这一点?我看了一遍,但我无法确定在哪里或如何输入这个。我一直在做的就是打破网站:(

2 个答案:

答案 0 :(得分:0)

您可以使用woocommerce_template_single_title挂钩。示例如下。

add_action('woocommerce_template_single_title', 'your_function');

function your_function(){

 // Do your stuff 
}

答案 1 :(得分:0)

Woo Commerce没有显示产品名称的短代码,但您可以轻松创建自己的功能。

function displayProductName($item) 
{
$productName = get_the_title($item['id']);
return $productName;
}

add_shortcode('product_name', 'displayProductName');

将以上代码添加到functions.php文件中,然后使用[product_name id =" 10"]输出产品标题,其中id是相关产品的ID。上面的例子使用了get_the_title()内置的WordPress函数: https://developer.wordpress.org/reference/functions/get_the_title/