Disable CSS specific page
I want disable one specific page of the default css, and i want use my css on the specific page. I don't know it is posibble?
I use Blank State plugin, for create blank page, but css its on the blank pages, but i want my css use on the specific blank pages.
https://wordpress.org/plugins/blank-slate/
So, i have one page, that name: test-area-7 Code:
add_action('wp_enqueue_scripts', 'my_script', 99);
function my_script()
{
if(is_page( 'test-area-7' )){
wp_dequeue_script('fpw_styles_css');
}
}
EDITED
add_action('wp_enqueue_scripts', 'my_script', 99);
function my_script()
{
if(is_page( 'test-area-7' )){
wp_dequeue_script('/wp-content/themes/colormag/style.css');
}
}