skip to Main Content

Truncating post titles in Divi theme using php

I want to truncate post titles in my page template. Here's the code I'm using which isn't working: $titletext = wp_trim_words( get_the_title(), 25, '...' ); $thumbnail = get_thumbnail( $width, $height, $classtext, $titletext, $titletext, false, 'Blogimage' ); I've also tried: $titletext…

VIEW QUESTION
Back To Top
Search