Guest User

Untitled

a guest
Jul 19th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. function new_excerpt_more( $more ) {
  2. return ' <a href="'. get_permalink( get_the_ID() ) . ' '
  3. . __('<br/><br/> Read More') . '</a>';
  4. }
  5.  
  6. add_filter( 'excerpt_more', 'new_excerpt_more');
  7.  
  8. function new_excerpt_more( $more ) {
  9. return '<br/><br/>Read More';
  10. }
  11. add_filter( 'excerpt_more', 'new_excerpt_more');
  12.  
  13. function read_more_modif(){
  14. $readmore = "make your custom text her" ;
  15. return '<div class="lireSuite"><a href="' . get_permalink() . '">"'.$readmore.'</a></div>';
  16. }
  17.  
  18. add_filter( 'the_content_more_link', ' read_more_modif' );
Add Comment
Please, Sign In to add comment