Using parse_blocks() on a widget?
-
Hello,
I’ve developed a Gutenberg block and I’m trying to access the block details from PHP, specifically the nested attributes.
I found that I can do this using parse_blocks i.e.
https://developer.www.ads-software.com/reference/functions/parse_blocks/So I can use the following to return the details for a page/post:
$blocks = parse_blocks( $post->post_content );However this only works if the block is placed on a page or post, it won’t work on say a widget because the blocks retrieved are on the page not the widget.
So how can I access the blocks on a widget?
This question is related to another one I posted on accessing nested attributes:
https://www.ads-software.com/support/topic/accessing-nested-attributes-in-a-wordpress-gutenberg-block-via-php/
I decided to create a new topic as I can’t imagine many people would read through such a long set of replies.Steve
- The topic ‘Using parse_blocks() on a widget?’ is closed to new replies.