I haven’t tested it to see if it does. But let me know. If it doesn’t filter excerpts when you have the content set to be filtered then I will add another option to do this, in a future update.
I have just installed this plugin on WordPress 3.4.2 and the exceprts are not being filtered.
Thanks. I’ll add it to the to-do list for the next version release.
Great David.
I could not wait for your next release to I found the theme index.php file and found the function that returns the excerpt:
echo wp_html_excerpt($excerpt,410);
For now I just inserted an IF statement directly above it to force it through your AWESOME filter:
if (function_exists(‘pccf_filter’)){$excerpt = pccf_filter($excerpt);}
Call me paranoid, but I included a function check in case the plugin gets turned off or whatever…… so my home page does not explode.
*Update* New version now supports excerpt filtering.