Advertisement
Aurangajeb

Read More Button For Excerpt in the Blog post archive page

May 11th, 2020
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. //Read More Button For Excerpt in the Blog post archive page template or HomePage
  2. function themeprefix_excerpt_read_more_link( $output ) {
  3.     global $post;
  4.     return $output . ' <a href="' . get_permalink( $post->ID ) . '" class="more-link" title="Read More">Read More</a>';
  5. }
  6. add_filter( 'the_excerpt', 'themeprefix_excerpt_read_more_link' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement