• 20-12-2022, 20:54:34
    #1
    Merhabalar arkadaşlar wordpressde bunu nasıl yapabilirim product list kısmında listenen ürünlerin isimlerini kısaltmak istiyorum
  • 20-12-2022, 21:19:16
    #2
    Temanı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;
    }
    }