Wordpress Woocommerce Ürün ismi Kısaltma
1
●100
- 20-12-2022, 21:19:16Temanızın functions.php dosyasına bunu ekleyin
add_filter( 'the_title', 'shorten_woo_product_title', 10, 2 );
function shorten_woo_product_title( $title, $id ) {
if ( ! is_singular( array( 'product' ) ) && get_post_type( $id ) === 'product' ) {
return wp_trim_words( $title, 4, '...' ); // change last number to the number of words you want
} else {
return $title;
}
}