Failed opening required in PHP

In my opinion, this situation may cause a file obtained with the require_once statement to have some errors. You should verify more-specific-file.php for errors.

Gutenberg – render_callback does not pass ToggleControl value on frontend

Really having to have this fixed, I used this not-so-elegant workaround that works perfectly. It is bound to the base-name I use for my blocks: add_filter(‘render_block_data’, function($parsed_block, $source_block, $parent_block) { if(strpos($parsed_block[‘blockName’], ‘my-base-name/’) !== false && isset($parsed_block[‘attrs’]) && is_array($parsed_block[‘attrs’])) { foreach($parsed_block[‘attrs’] as $key => $val) { if($val === true) { $parsed_block[‘attrs’][$key] = ‘1’; } elseif($val === … Read more