Viewing 1 replies (of 1 total)
  • Theme Author LifeIsSimple

    (@lifeissimple)

    Hi jobbatam,

    you can use a child theme and override the following function:

    // CHANGE EXCERPT MORE LINK
    	function wikiwp_excerpt_more($more) {
    	global $post;
    	return '... <a href="'. get_permalink($post->ID) . '">' . __('read more', 'wikiwp').' &raquo;</a>';
    	}
    	add_filter('excerpt_more', 'wikiwp_excerpt_more');

    in functions.php

Viewing 1 replies (of 1 total)

The topic ‘Remove Auto Read More’ is closed to new replies.