Do you want to add “Read More” permalink to the end of the the_excerpt
? While there’s probably a plugin for this, we have created a quick code snippet that you can use to add “Read More” permalink to the end of the the_excerpt
in WordPress.
Instructions:
All you have to do is add this code to your theme’s functions.php file or in a site-specific plugin:
function excerpt_readmore($more) { return '... <a href="'. get_permalink($post->ID) . '" class="readmore">' . 'Read More' . '</a>'; } add_filter('excerpt_more', 'excerpt_readmore');
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 50+ best responsive WordPress themes to create a mobile-ready site and how to create a job application form in WordPress.
using wp theme twenty nineteen, your excerpt tweak throws the following error:
Undefined variable: post /functions.php on line 2 Notice: Trying to get property of non-object in /functions.php on line 2
“line 2” refers to the code in line 2 of your code example above.
for function.php
………………………………
function custom_read_more() {
return ‘ Continue Reading »‘;
}
function excerpt($limit) {
return wp_trim_words(get_the_excerpt(), $limit, custom_read_more());
}
………………………..
for index.php
………………………….
I am using Deep Sea theme, trick is not working for me, kindly suggest something to fix it.
Without seeing your theme I would have no idea, I would guess that they don’t use the_excerpt() in the theme as expected so it does not work. This snippet simply just replaces […..] with my custom read more.
1. At the end of my post , a button named “permalink” is showing but i want to change it to “read more”.
2. While clicking on this button , my Featured image is not showing up , all i can see is my Post without its Featured image.
Suggest something….
ah perfect, thank you so much!
Is there a way to add the post title to the read more section?
Didn’t work for me =(
Do you use the “the_excerpt” function within your template?
[…] WPSnipp.com Share this […]