• fashionwithoutguilt

    (@fashionwithoutguilt)


    Hello,
    I want to be able to change the words from Continue Reading to a customizable to whatever words I want to place in the text and how do you change the color right now it is blue but I want to change it to red?

    Thank you so much,
    Breck

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator t-p

    (@t-p)

    try adding this to your theme’s functions.php:

    function change_excerpt_more(){
    	   function new_excerpt_more( $more ) {
    	        return '<span class="read-more"> <a href="'. get_permalink($post->ID) . '">Read more</a> </span>';
    	   }
    	   add_filter('excerpt_more', 'new_excerpt_more');
    	}
    	add_action( 'after_setup_theme', 'change_excerpt_more' );
    Michael

    (@alchymyth)

    Thread Starter fashionwithoutguilt

    (@fashionwithoutguilt)

    Hello,
    I am not good at css stuff and I have a edited theme from some modifications that were done to my site, what is a way that yuo can look at my css to tell me where to edit this?

    I do not see where to edit this in my editor folders?

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I want to customize and change my Read More tag in WordPress’ is closed to new replies.