• I am trying to change the read more link in my child theme from ‘…’ to ‘Read more…’ but I can’t seem to get it. I put this in my functions.php:

    // Replaces the excerpt "more" text by a link
    	function new_excerpt_more($more) {
    	       global $post;
    		return '<a class="moretag" href="'. get_permalink($post->ID) . '"> Read the full article...</a>';
    	}
    	add_filter('excerpt_more', 'new_excerpt_more');

    I looked in my parent theme to see if it was setting a filter for this, but I didn’t see anything. Why isn’t it working?

Viewing 6 replies - 1 through 6 (of 6 total)
  • What parent theme are you using? Where did you download it from?

    Thread Starter mcography

    (@mcography)

    I am using Reverie.

    I’m sorry but as you appear to be using a non-WPORG theme, you need to seek support from the theme’s developers – paid or otherwise. We only support themes downloaded from www.remarpro.com here.

    Thread Starter mcography

    (@mcography)

    Alright, thanks.

    And please do not post another new topic on the same subject. The answer will be the same. The www.remarpro.com support forums are meant for the core application, themes and plugins that are distributed on www.remarpro.com. We do not support themes downloaded from elsewhere.

    Your other topic has been deleted.

    Thread Starter mcography

    (@mcography)

    I thought you meant I posted in the wrong thread. I’ve asked questions here tons of times about child themes and I’ve found help. Not sure how this question is different.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Can't Change Read More Link in Child Theme?’ is closed to new replies.