Woocommerce截短产品分类页面的标题长度
在 WooCommerce 中,产品分类页面的标题长度可能会影响页面的外观和用户体验。本教程将向您展示如何控制产品分类页面的标题长度,以便适应您的需求。
打开您当前使用的主题文件夹,并找到名为 functions.php 的文件。在 functions.php 文件中,添加以下代码:
function shorten_woo_product_title( $title, $id ) { if (is_admin()) {return $title;} if ( ! is_singular( array( 'product' ) ) && get_post_type( $id ) === 'product' ) { return substr( $title, 0, 5).'...';//后面的数字5即为截短后的字符数,改为你想要的即可 } else { return $title; } } add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 );
保存 functions.php 文件,然后【刷新】产品分类页面,您将看到标题被截短为指定的长度。