将此代码添加到函数中。php文件,然后您可以使用[product_title id="123"]
短代码
如果需要其他产品元,可以编辑函数以返回所需的任何产品数据
/**
* Product title shortcode.
* `[product_title id="123"]` to get a specific product title, by ID
*
* @return string The post\'s title.
*/
add_shortcode( \'product_title\', function( $atts ) {
$atts = shortcode_atts( array(
\'id\' => get_the_ID(),
), $atts, \'post_title\' );
return get_the_title( absint( $atts[\'id\'] ) );
});