Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Darren Cooney

    (@dcooney)

    Hi,
    Looks like its being added by your theme… Likely a function in there that adds Continue Reading after he excerpt.
    Which theme are you using?

    Thread Starter Ameer hamza

    (@ameer-hamza)

    thanks Darren!

    you are awesome! i figure it out my self. just put this code in function.php and evrything work great.

    function new_excerpt_more( $more ) {
    
    	return '<a class="read-more" href="' . get_permalink( get_the_ID() ) . '">' . __( 'Read More', 'your-text-domain' ) . '</a>';
    }
    
    add_filter( 'excerpt_more', 'new_excerpt_more' );

    i am WordPress developer let me know if i can give some suggestion about the plugin.
    regards,
    Ameer hamza

    Plugin Author Darren Cooney

    (@dcooney)

    Ok great!
    Sure, you can use the form on my website if you want to start a discussion!

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to change the "Continued" text from end of every post listing’ is closed to new replies.