0

my code in wordpress

<?php echo substr(get_the_excerpt(), 0, 160); ?>

but in view: thiên nhiên tuyệt vời, nh��...

How to fix special character

Thanks

1 Answers1

1

You can use mb_substr() instead

rambu
  • 366
  • 1
  • 8
  • i'm use `function get_excerpt($count){ $permalink = get_permalink($post->ID); $excerpt = get_the_content(); $excerpt = strip_tags($excerpt); $excerpt = substr($excerpt, 0, $count); $excerpt = substr($excerpt, 0, strripos($excerpt, " ")); return $excerpt; }` `` and done! Thanks – Amaury Loiseau May 08 '14 at 03:22