Skip to content

Instantly share code, notes, and snippets.

@henshaw
Created May 4, 2025 02:25
Show Gist options
  • Save henshaw/8959fd0b57845c1023cef6074193695e to your computer and use it in GitHub Desktop.
Save henshaw/8959fd0b57845c1023cef6074193695e to your computer and use it in GitHub Desktop.
Exclude CSS not used on the page
<?php if (is_front_page()) : ?> CSS only for homepage <?php elseif (is_category(1)) : ?> CSS only for category with ID 1 <?php elseif (is_category(2)) : ?> ... <?php endif; ?>
@henshaw
Copy link
Author

henshaw commented May 4, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment