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

Step-by-Step Guide to Setting Up a Secure Private Cloud Server for Your Startup

If you’re ready to take control of your organization’s data by setting up a private… Read More

20 hours ago

Step-by-Step Guide to Setting Up a Secure Private Cloud Server for Your Organization.

Building a private cloud involves creating a virtualized environment where you can manage, store, and… Read More

20 hours ago

Flex AI: The Future of Flexible Artificial Intelligence

In the rapidly evolving landscape of artificial intelligence, Flex AI stands as a transformative force,… Read More

1 month ago

iPhone 16 Pro and Pro Max: A Comprehensive Overview of Apple’s Latest Flagships

Apple is set to once again make waves in the smartphone market with the iPhone… Read More

1 month ago

How to Save a Water Damaged iPhone

Act quickly! The sooner you take action, the better your chances of saving your water… Read More

3 months ago

Exciting Innovations in Electric Vehicles for 2024

Introduction The electric vehicle (EV) market continues to grow rapidly, driven by technological advancements and… Read More

5 months ago

This website uses cookies.