【发布时间】:2021-07-12 13:03:18
【问题描述】:
我的网站是https://outlet.ltd/deals。我尝试通过以下链接将 WooCommerce 产品的简短描述添加到实现页面网格(在产品标题下),但没有成功。什么都没有显示。
我正在使用REHub theme。有人可以帮忙吗?
【问题讨论】:
标签: wordpress woocommerce wordpress-theming
我的网站是https://outlet.ltd/deals。我尝试通过以下链接将 WooCommerce 产品的简短描述添加到实现页面网格(在产品标题下),但没有成功。什么都没有显示。
我正在使用REHub theme。有人可以帮忙吗?
【问题讨论】:
标签: wordpress woocommerce wordpress-theming
你可以用 woocommerce_after_shop_loop_item_title 钩子来实现
add_action('woocommerce_after_shop_loop_item_title','my_product_description');
function my_product_description() {
// get the global product obj
global $product;
// get the global product obj
$description = $product->get_short_description();
echo $description;
}
【讨论】:
将此代码添加到您的主题functions.php 文件中。
// define the woocommerce_after_shop_loop_item_title callback
function action_woocommerce_after_shop_loop_item_title( ) {
global $product;
if( is_shop() ):
echo $product->get_short_description();
endif;
};
// add the action
add_action( 'woocommerce_after_shop_loop_item_title', 'action_woocommerce_after_shop_loop_item_title', 5 );
它对我有用。
【讨论】: