| 1 |
<?php |
| 2 |
/** |
| 3 |
* Blocksy theme. |
| 4 |
* |
| 5 |
* @package ghostkit |
| 6 |
*/ |
| 7 |
|
| 8 |
/** |
| 9 |
* GhostKit_3rd_Blocksy |
| 10 |
*/ |
| 11 |
class GhostKit_3rd_Blocksy { |
| 12 |
/** |
| 13 |
* GhostKit_3rd_Blocksy constructor. |
| 14 |
*/ |
| 15 |
public function __construct() { |
| 16 |
if ( 'blocksy' !== get_template() ) { |
| 17 |
return; |
| 18 |
} |
| 19 |
|
| 20 |
add_filter( 'gkt_custom_css_allow_js_fallback', '__return_false' ); |
| 21 |
add_filter( |
| 22 |
'gkt_parse_blocks_methods', |
| 23 |
function () { |
| 24 |
return array( 'modern', 'classic' ); |
| 25 |
} |
| 26 |
); |
| 27 |
} |
| 28 |
} |
| 29 |
|
| 30 |
new GhostKit_3rd_Blocksy(); |
| 31 |
|