?AlkantarClanX12
| Current Path : /home/r/a/n/rankinh/villavanille/wp-content/themes/villa-vanille-child/ |
| Current File : /home/r/a/n/rankinh/villavanille/wp-content/themes/villa-vanille-child/functions.php |
<?php
if ( ! function_exists( 'drew_child_theme_enqueue_scripts' ) ) {
/**
* Function that enqueue theme's child style
*/
function drew_child_theme_enqueue_scripts() {
$main_style = 'drew-main';
wp_enqueue_style( 'drew-child-style', get_stylesheet_directory_uri() . '/style.css', array( $main_style ) );
}
add_action( 'wp_enqueue_scripts', 'drew_child_theme_enqueue_scripts' );
}
// Disables the block editor from managing widgets in the Gutenberg plugin.
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false', 100 );
// Disables the block editor from managing widgets. renamed from wp_use_widgets_block_editor
add_filter( 'use_widgets_block_editor', '__return_false' );