Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //adicione essa função no seu function.php
- function truncationText($txt, $size) {
- if(strlen($txt > $size)) {
- return substr($str_title, $size);
- } else {
- return $txt;
- }
- }
- //como usar//
- //adicione essa linha no local que irá exibir o titulo
- if(function_exists(truncationText)) {
- echo truncationText($post->title, 200);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement