Thank you phoenix for your reply.
The first one worked but only printed first one word and followed by “…”.
So I have modified it to something like <?php echo mo_truncate_string(get_the_excerpt(), 200) . '..'; ?>
And it seems like working now… But I don’t get how this 200 really mean. Because by changing this value to 400 doesn’t make output text volume doubled. Also I had to put two dots (one less) '..'
to output three dots.
Could I also ask about thumnail image?
<?php if ( has_post_thumbnail() ) { the_post_thumbnail(); } ?>
This one works but is that the same method as invent theme default snippet image output?
I want the output method to be consistent to the default one..
Any of your advise is appreciated:D!