/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

function allow_bricks_code_execution_for_subsites() {
    // Get the role object for administrators
    $role = get_role('administrator');
    if ($role && !$role->has_cap('unfiltered_html')) {
        $role->add_cap('unfiltered_html');
    }
    if ($role && !$role->has_cap('bricks_execute_code')) {
        $role->add_cap('bricks_execute_code');
    }
}
add_action('init', 'allow_bricks_code_execution_for_subsites');



