Skip to content

Instantly share code, notes, and snippets.

@suth
Created February 11, 2014 18:19
Show Gist options
  • Save suth/8940780 to your computer and use it in GitHub Desktop.
Save suth/8940780 to your computer and use it in GitHub Desktop.
<?php
function my_css_function() {
if ( is_single() && get_post_meta( get_the_ID(), 'field_key', true ) != '' ) {
wp_enqueue_style( 'style-name', 'folder/stylesheet.css' );
}
}
add_action( 'wp_enqueue_scripts', 'my_css_function' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment