How to display links in a WordPress excerpt?

Allowing link in a excerpt very common issue for WordPress users.

You can display excerpt link by adding this script to your theme “functions.php” file.

remove_filter( 'the_excerpt', 'wp_trim_excerpt' );
function new_trim_excerpt($text) {
 global $post;
 if ( '' == $text ) {
 $text = get_the_content('');
 $text = apply_filters('the_content', $text);
 $text = str_replace('\]\]\>', ']]>', $text);
 $text = preg_replace('@<script[^>]*?>.*?</script>@si', '', $text);
 $text = strip_tags($text, '<a>');
 $excerpt_length = 50;
 $words = explode(' ', $text, $excerpt_length + 1);
 if (count($words)> $excerpt_length) {
 array_pop($words);
 array_push($words, '...');
 $text = implode(' ', $words);
 }
 }
 return $text;
}
remove_filter('get_the_excerpt', 'wp_trim_excerpt');
add_filter('get_the_excerpt', 'new_trim_excerpt');

Comments

comments

Shayed

Share
Published by
Shayed

Recent Posts

How to Create a Winning Facebook Ad Campaign for Your Business

Introduction Creating a successful Facebook ad campaign is essential for small and medium-sized businesses looking… Read More

6 days ago

Why Small Businesses Need Facebook Marketing in 2025

Introduction In 2025, Facebook remains one of the most powerful platforms for small and medium-sized… Read More

7 days ago

Summary of Key Trading Rules Followed by Expert Pro Traders

Expert traders have honed their craft over years of market observation, trial, and error. Their… Read More

7 days ago

Master Google Ads: Top 10 PPC Strategies for 2025 Success

Overview As we step into 2025, mastering Google Ads PPC strategies is essential for businesses… Read More

2 months ago

How TF-IDF Impacts SEO?

Introduction to TF-IDF: A Beginner's Guide with Real-World Examples Search engines like Google aim to… Read More

2 months ago

How to Save $500 a Year with These Energy-Efficient Smart Devices

Introduction In today’s world, rising energy costs are a concern for many households. But what… Read More

2 months ago

This website uses cookies.