Hi i created code to show excerpt in my wordpress theme but when in put the urls within my post show them in my excerpt this is my code
<div class="standard-excerpt">
<?php
$content = get_the_content();
$trimmed_content = wp_trim_words( $content, 200 );
echo $trimmed_content;
?>
<a class="text-info" href="<?php the_permalink(); ?>">
<?php _e('[Continue Reading]', 'Yallanpe Theme'); ?>
</a>
</div>
how i can restrict the URL or Links Until don't show them in my excerpt?
does i can do this by preg_match_all
? or no? if i can how can i do this?
please i want modify the $trimmed_content
Until don't show me the Url and Links in my excerpt.