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 🙂
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.