• No matter what i choose in the themeoptions text, text-button ..
    When a category is clicked and a list of articles is listed i get a list of excerpts as wished but on the end of the content of each article there is an ” […]” no read more link
    Is this a bug ?

Viewing 1 replies (of 1 total)
  • you can add this code to your functions.php
    ============================================

    function wpdocs_custom_excerpt_length( $length ) {
    // number of characters to be displayed
    return 20;
    }
    add_filter( ‘excerpt_length’, ‘wpdocs_custom_excerpt_length’, 999 );

    function wpdocs_excerpt_more( $more ) {
    return sprintf( “%2$s“,
    get_permalink( get_the_ID() ),
    __( ‘Read More’, ‘textdomain’ )
    );
    }
    add_filter( ‘excerpt_more’, ‘wpdocs_excerpt_more’ );

    if you can’t get it working view this
    https://prntscr.com/bxi5lf

Viewing 1 replies (of 1 total)
  • The topic ‘Readmore is just a […]’ is closed to new replies.