Your IP : 216.73.216.95


Current Path : /var/www/mainsite/arfs/wp-content/plugins/disable-gutenberg/inc/
Upload File :
Current File : /var/www/mainsite/arfs/wp-content/plugins/disable-gutenberg/inc/plugin-frontend.php

<?php // Frontend stuff..

function disable_gutenberg_wp_enqueue_scripts() {
	
	global $wp_query;
	
	if (is_admin()) return;
	
	$post_id = isset($wp_query->post->ID) ? $wp_query->post->ID : null;
	
	$options = get_option('disable_gutenberg_options');
	
	$enable = isset($options['styles-enable']) ? $options['styles-enable'] : false;
	
	if (!$enable && !disable_gutenberg_whitelist($post_id)) {
		
		wp_dequeue_style('wp-block-library');
		wp_dequeue_style('wp-block-library-theme');
		
	}
	
}