Advertisement
phpface

Untitled

Sep 7th, 2022
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. add_filter( 'get_the_excerpt', function( $post_excerpt, $post ){
  2.  
  3. $find = '<!--more-->';
  4. $replace = sprintf( '<div class="more-link-wrap mt-3"><a href="%1$s" class="more-link">%2$s</a></div>',
  5. esc_url( get_permalink( $post->ID ) ),
  6. esc_html__( 'Continue reading', 'streamtube' )
  7. );
  8.  
  9. return str_replace( $find, $replace, $post_excerpt );
  10.  
  11. }, 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement