hide specific css and js files in specific page wordpress with id or without?
If you’re not wanting something to load on the front page, wrap it in a !is_front_page() check. !is_front_page() will check if the current page is your site’s base URL (regardless of whether you have it set to a static page or the posts page in your settings). Example: <?php if ( !is_front_page() ) : ?> … Read more