php - stripping tags from excerpt in Wordpress is not working -
i using snippet
<a href='<?php the_permalink() ?>' title='<?php echo strip_tags(the_excerpt()); ?>
with intending remove ellipses
, <p>
tags , other shortcodes
, links
, not work @ all.
if hover anchor, still getting see <p>
wrapped in excerpt, other tags , url links. doing wrong , have working?
what need get_the_excerpt():
<a href='<?php the_permalink() ?>' title='<?php echo strip_tags( get_the_excerpt() ); ?>'>
however, won't strip out ellipses (…) since they're html entities, not tags.
Comments
Post a Comment