How to call Gutenberg Blocks anywehre via PHP?
To call Gutenberg blocks via PHP, you can use the render_block() function provided by WordPress. This function allows you to programmatically render a specific Gutenberg block or a group of blocks. Here’s an example of how you can do it: $blocks = array( array( ‘name’ => ‘my-custom-block’, ), array( ‘blockName’ => ‘core/block’, ‘attrs’ => array(…