Can't Change Read More Link in Child Theme?
-
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)
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.