I´m again... in the main index I would like to show only 200 caracteres... how can I change this code:?
the_content(__('Read more','avia_framework'));
Thanks
I´m again... in the main index I would like to show only 200 caracteres... how can I change this code:?
the_content(__('Read more','avia_framework'));
Thanks
Hey,
you can use following code:
echo substr(strip_tags($post->post_content), 0, 200);I put this way and this doesn´t works: (in the file "includes/loop-bloghome.php")
<?php
$cats = get_the_category();
if(!empty($cats))
{
/*
the_category(', ') ;
the_content(__('Read more','avia_framework'));
*/
substr(strip_tags($post->post_content), 0, 200);
}
?>
Of course it doesn't work. You need to echo the result or save it in a variable....
thnks a lot... it works!!!
Glad that I could help you :)
You must log in to post.