Hey, awesome plugin!
Can I somehow limit number of characters that are shown by your plugin? something like excerpt function?
I would like to show only like 80 chars.
Thanks!
Hey, awesome plugin!
Can I somehow limit number of characters that are shown by your plugin? something like excerpt function?
I would like to show only like 80 chars.
Thanks!
Yes, you could use the substr() PHP function to limit the number of characters. I'm not sure if you're trying to limit the number of characters in the title, or in the excerpt. If you were trying to limit the number of characters in the title, you would want to change line 24 of the plugin to look like this:
$html .= '<li><a href="'.$numpost->guid.'">'.substr($numpost->post_title, 0, 10).'</a>';
To limit the excerpt, you would use the same substr() function to wrap the $numpost->post_excerpt variable.
This topic has been closed to new replies.