• Resolved markuskosonen

    (@markuskosonen)


    How can I change the “Read more”-link text after the captions of the latest articles in the main page?

Viewing 2 replies - 1 through 2 (of 2 total)
  • This isn’t a built in option with the free theme. You can edit the theme through a child theme by adding this function into the child theme functions.php file:

    remove_filter('excerpt_more', 'pinnacle_excerpt_more');
    add_filter('excerpt_more', 'custom_pinnacle_excerpt_more');
    function custom_pinnacle_excerpt_more($more) {
      $readmore =  __('Read More', 'pinnacle') ;
      return ' &hellip; <a href="' . get_permalink() . '">'. $readmore . '</a>';
    }

    Kadence Themes

    Thread Starter markuskosonen

    (@markuskosonen)

    Thanks Kadence, that worked! I′m impressed with the theme and your helping service!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Read more’ is closed to new replies.