Advertisement
fahimmurshed

Blog Pro Readmore button

Jun 8th, 2020
919
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. function new_excerpt_more($more) {
  2. return '';
  3. }
  4. add_filter('excerpt_more', 'new_excerpt_more', 21 );
  5. 
  6. function the_excerpt_more_link( $excerpt ){
  7. 
  8.  $post = get_post();
  9.  $excerpt .= '<p class="read-more">';
  10.  $excerpt .= '<a class="ast-button" href="'. get_permalink($post->ID) . '" target="_self">Read More »</a>';
  11.  $excerpt .= '</p>';
  12. 
  13.  return $excerpt;
  14. }
  15. add_filter( 'the_excerpt', 'the_excerpt_more_link', 21 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement