code block does not show in excerpt

I am creating some blog pages with example codes, and I would like to show the codes in excerpts, but WordPress automatically excludes code blocks from excerpts, is there a workaround for showing code blocks in the excerpt?

Topic block-editor code excerpt Wordpress

Category Web


Try getting it in raw form from the DB:

global $wpdb;
$post_excerpt = $wpdb->get_var(
        $wpdb->prepare(
            "SELECT post_excerpt FROM $wpdb->posts
             WHERE ID = %d
            ",
            $post->ID
        )
    );

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.