• Resolved Nick Ottens

    (@ottens)


    I want to change the more-link in my Toolbox theme. It currently displays “(more…)” I want it to be “Read more”.

    Can’t find it in functions.php though. Tried adding this:

    function toolbox_more_text($content) {
    
    	$content = 'Read more';
    
    	return $content;
    
    }
    add_filter('more_text', 'toolbox_more_text');

    But that didn’t change anything. Can anyone help?

Viewing 1 replies (of 1 total)
  • Thread Starter Nick Ottens

    (@ottens)

    I’m terribly sorry, should have looked here before I asked.

    In case you need to know, replace:

    <?php the_content(); ?>

    With:

    <?php the_content('Read more'); ?>

    That simple!

Viewing 1 replies (of 1 total)
  • The topic ‘[Toolbox] Change more-link’ is closed to new replies.