Skip to content

Instantly share code, notes, and snippets.

@racmanuel
Created May 14, 2021 18:51
Show Gist options
  • Save racmanuel/3e455fa0c4b17fe0e50af5b811424270 to your computer and use it in GitHub Desktop.
Save racmanuel/3e455fa0c4b17fe0e50af5b811424270 to your computer and use it in GitHub Desktop.
Get a specific URL and Enqueue a Style in WordPress
<?php
$url = $_SERVER["REQUEST_URI"];
$iscategorymarketplace = strpos($url, 'marketplace');
if ($iscategorymarketplace == true) {
//url contains 'marketplace'
wp_enqueue_style('marketplace_cat', get_stylesheet_directory_uri() . '/assets/css/marketplace-category.css', array(), '1.0', 'all');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment