WP Show Posts migration | WordPress.org

I was able to use the Post Excerpt block along with the “get_the_excerpt” filter to get this working. Something like this:

add_filter( 'get_the_excerpt', 'my_the_excerpt', 10, 2 );
function my_the_excerpt( $excerpt, $post ) {
    if ( strpos( $post->post_content, '<!--more-->' ) ) {
        return get_the_content();
    }
    return $excerpt;
}

Plugin Support
ying

(@yingscarlett)

Hi @joneiseman,

Glad you’ve figured it out 🙂

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer