Get the automatic excerpt from a page created with gutenberg

You can hook the get_the_excerpt filter with parse_blocks to extract the content of your post. add_filter( ‘get_the_excerpt’, ‘se378694_default_excerpt’, 10, 2 ); function se378694_default_excerpt( string $post_excerpt, WP_Post $post ):string { if ( empty( $post_excerpt ) ) { $blocks = parse_blocks( $post->post_content ); // check if the first block matches the type of content you want for … Read more

Reblog WordPress to another WordPress?

1 – RSS is the best way. See FeedWordPress | simple and flexible Atom/RSS syndication for WordPress and WordPress › SimplePie Plugin for WordPress « WordPress Plugins and Developer’s Guide – Google AJAX Feed API – Google Code 2 – Probably