fahimmurshed

Blog post excerpt (The Mighty Astra Theme)

May 28th, 2020 (edited)
1,194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. // Astra Post Excerpt
  2. // More information visit http://fahimm.com
  3. function new_excerpt_more($more) {
  4.     return '';
  5. }
  6. add_filter('excerpt_more', 'new_excerpt_more', 21 );
  7.  
  8. function the_excerpt_more_link( $excerpt ){
  9.  
  10.     $post = get_post();
  11.     $excerpt .= '<p class="read-more">';
  12.         $excerpt .= '<a class="ast-button" href="'. get_permalink($post->ID) . '" target="_self">Dhaka More »</a>';
  13.     $excerpt .= '</p>';
  14.  
  15.     return $excerpt;
  16. }
  17. add_filter( 'the_excerpt', 'the_excerpt_more_link', 21 );
Add Comment
Please, Sign In to add comment