How to get the excerpt without html tags?

If you want to show excerpt without html then you can simply use these options:

1.. use echo get_the_excerpt(); that simply return the text without any html tags.

2.. use echo wp_filter_nohtml_kses(get_the_excerpt());

More Articles & Posts