Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在(woo commerce)商店页面的产品图片和标题下添加一个小描述,可能是 4 -5 个要点或其他内容。我在这里找到了一些代码来放入function.php,但网站崩溃了。(也许它太旧了或什么?)非常感谢任何帮助。
像下面这样向functions.php添加操作woocommerce_after_shop_loop_item_title,产品简短描述将显示在商店页面的标题下。
woocommerce_after_shop_loop_item_title
function add_product_text_under_title() { echo '<p>'.the_excerpt().'</p>'; } add_action( 'woocommerce_after_shop_loop_item_title', 'add_product_text_under_title', 9 );