After hours of googling I came up with following solution. Maybe once will help to someone.
1) query post where is used gutenberg youtube block:
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
's' => 'core-embed/youtube',
'posts_per_page' => 1
);
$query = new WP_Query($args);
2) extract the URL from youtube block of the post
$post_id = 117;
$post = get_post($post_id);
$blocks = parse_blocks( $post->post_content );
function findYoutubeBlock(array $blocks) {
return $blocks['blockName'] == 'core-embed/youtube';
}
if (has_block('core-embed/youtube', $post_id)) {
$youtube_block = reset(array_filter($blocks, 'findYoutubeBlock'));
$youtube_url = $youtube_block['attrs']['url'];
}
Related Posts:
- Using pre_get_posts on a specific core/query block
- How to query for custom field within Gutenberg block from outside of that post? [closed]
- While creating Block Themes in WordPress, how can I query custom posts for an Archive view?
- Creating query to show which editor (classic or block) was last used to edit a post/page
- Is it possible (and how to) query single Gutenberg blocks?
- Can wp_query return posts meta in a single request?
- Broken? WP_Query and “attachment” as a post type
- Order by DESC, ASC in custom WP_Query
- Exclude or Include category ids in WP_Query
- Secondary Sort (fallback) for WP_Query
- Changing the meta_query of the main query based on custom query_vars and using pre_get_posts
- Query Posts in a Predefined Order
- How to paginate attachments in a secondary query as gallery?
- How to stop wordpress to make the default query?
- How to make an activities stream mixing posts and comments?
- WP_Query based on URL parameters
- Order by meta_value_num DESC and meta_value ASC on WP 4.0
- How to modify query so it grabs only 90 posts in total?
- Get only 1 Most Recently Modified Child Post from Parent
- Placing a div or img in between a post array using WP Query [closed]
- How to query ‘posts_per_page’ to display a different blog posts index template?
- Trying to check and see if a post has a featured image outside of the main loop
- Pagination doesn’t work in custom page template [duplicate]
- wp_query a single custom post type?
- Efficient way to update multiple post meta
- Does meta_query need numeric values to be cast to integers?
- How to use Meta Value Compare in WP_Query For Max and Min numbers
- WordPress documentation – WP_Query arguments
- WP_Query with multiple meta fields filter?
- Using apply_filters(‘the_content’, $custom_query->post_content) alters output
- WP_Query Date Query After Minus Hour AND minus minutes
- Shortcode to show thumbnail and link for 3 random posts
- wp query template tags not working
- How to select events within current week using wp_query
- Get number of authors
- How to display upcoming events by dat with Modern Events Calendar Lite
- Wp_query Add specific pending posts
- How to Filter Posts by Custom Fields?
- How can I display a custom field from all posts and order them individually from their parent post
- pagination with ‘no_found_rows’ => true,
- How to get all product attributes for filters in WooCommerce?
- Fetch Record based on meta key dates
- How can I display list of all posts from a specific author, with publish dates in the future, on an author archive page (author.php)?
- Custom posts visible in admin, but truncate in public
- Query posts from category A, and from either category B or C
- meta_query not working as expected
- Why does get_posts only show results for Admins or logged-out users?
- wp_query with parameters
- Query posts with “non set” meta value
- Add filter post_where and passing post_type argument
- WP_Query infinite Loop
- Limiting number of related posts
- Ordering a mysql style datetime stamp with meta_query
- Advanced WP Query and/or
- 2 wordpress loops showing 1 post from same post type – how to avoid showing the same post?
- WP Query – order posts by meta field first and then order the rest
- Reusing content from front page on sub page
- Get Child Page IDs by Parent ID
- Wildcard search in WP Query
- Pagination works in custom query loop but it doesn’t work in shortcode
- Especific order by Custom Field Values in WP_Query
- Create a notification for post field
- date_query is showing duplicate results
- How to query posts for custom post type with featured image for first 2 post?
- Why is get_the_excerpt returning full content
- How to avoid filling up an array each time I run a WP_query?
- How to SQL query posts IDs by categories AND authors?
- Randomly pick one testimonial post
- Date not appearing in custom query
- Custom post type – filter content by custom meta box content
- Trying to output content from page, works locally but not online
- Admin: Custom Query Returning Permissions Error
- wp query remove posts from query then update max pages and posts found
- Combine relationship posts with existing wp_query
- Custom order of posts in wp_query and different taxonomies
- Slick slider for post doesn’t display anything
- What is the equivalent WP_Query of a SQL Query?
- create custom shortcode wp and put php code in
- Show Gutenberg facebook embed with a custom theme
- Count post meta entries
- use mysql variable in a $wpdb->query to reindex a column?
- How to get only present and past posts with post_date
- wp_insert_post with ACF Fields and WP Meta Query returns no rows until update
- Query WP Posts, then list the taxonomies from those posts
- Query post with content only
- Search with WP_Query, but ignore href URLs in anchor tags?
- Displaying Pages in Nav Sub-Menu with Specific Taxonomy Terms?
- Is meta_key used for ordering, filtering, or both?
- compare for multiple meta values for same key in wp_query
- Taxonomy Terms That Don’t Exist Display Results
- Why is my query not giving results?
- Wrote a WP Cron Plugin and it triggers a fatal error upon activation
- Add pagination to table generated by wp_query
- Adding a Theme Customizer Control for Posts_Per_Page
- using next-page and previous page inside a wp_query
- Custom query from all posts & all child page from one parent page?
- wp_query conditionally get posts
- restrict posts per page
- the_excerpt() not working in custom archive
- Why am I getting no results of a query placed after another query?