Viewing 2 replies - 1 through 2 (of 2 total)
  • strid3r

    (@strid3r)

    I am looking to this as well. I even tried editing class-post-content-shortcodes.php file but could not get this to work. Could someone share a fix.

    Plugin Author Curtiss Grymala

    (@cgrymala)

    Hmm. Theoretically, you could do something like the following (in your theme’s functions.php file):

    add_filter( 'post-content-shortcodes-read-more', 'add_ellipsis_to_pcs_excerpt' );
    function add_ellipsis_to_pcs_excerpt( $readmore ) {
        return '… ' . $readmore;
    }

    I haven’t tested that, so the formatting may not be quite what you want, but I think it should work.

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