25/03/2013

Wordpress - Última letra com acento errado

Se você utilizou o get_the_excerpt(), ou the_excerpt(), ou get_the_content(), ou the_content() com substr() e os acentos vieram quebrados, é só usar isto:
<?php
    // VAMOS PEGAR O EXCERPT
    $string = get_the_excerpt(); 
    
    // PEGAREMOS AGORA OS 100 PRIMEIROS CARACTERES
    echo mb_substr($string,0,100,'UTF-8');
?>

Nenhum comentário:

Postar um comentário