Support

Account

Home Forums ACF PRO Create columns Front-End Reply To: Create columns Front-End

  • Hi @pepacobos

    You can use the wp_trim_words() to trim the words or trim() and substr() to trim the characters. Here’s how to do it:

    $content = wp_trim_words( get_sub_field('resumen'), $num_words = 10, '<a href="'.get_permalink().'">...Read More</a>' );

    And for the characters:

    $content = trim(substr( get_sub_field('resumen'), 0, 50)).'<a href="'.get_permalink().'">...Read More</a>';

    Hope this helps 🙂