• Hello today i updated customizr theme to latest version .but after upgrading my post excerption doesnt work. but the older posts are still with read more link. how can i fix this problem? i use customizr child theme. still my child theme’s functions.php contain excerption code but i couldnt find php the content code in index.php

Viewing 4 replies - 1 through 4 (of 4 total)
  • Please post your site’s URL. Also copy paste your child theme’s functions.php file to pastebin.com and share that URL too.

    Are you sure you didn’t edit any of the main theme’s file before this update? If you had this update would’ve overwritten it.

    As far as I saw all posts had text as “Devamı İçin Tıkla”

    Which older posts are you talking about?

    Thread Starter ercutombalak

    (@ercutombalak)

    i made it maNUlly when i posted the first post. with “more” tool

    Try the following code in the functions.php of your child theme

    function excerpt_read_more_link($output) {
    global $post;
    return $output . '<span class="continue-reading"><a href="' . get_permalink() . '">Devami Için Tikla</a></span>';
    }
    add_filter('the_excerpt', 'excerpt_read_more_link');
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘excerption problem after upgrading’ is closed to new replies.