• I would like to change that text for Lee mas, which is the same thing but in Spanish.

    Is there a code or something I can do to fix that?

Viewing 1 replies (of 1 total)
  • add this code in function.php

    function new_excerpt_more($more) {
           global $post;
        return ' <a class="more_link" href="'. get_permalink($post->ID) . '">Lee mas</a>';
    }
    add_filter('excerpt_more', 'new_excerpt_more');

Viewing 1 replies (of 1 total)
  • The topic ‘How to change read more text’ is closed to new replies.