Skip to content

Instantly share code, notes, and snippets.

@davidvandenbor
Last active December 25, 2015 15:39
Show Gist options
  • Save davidvandenbor/6999431 to your computer and use it in GitHub Desktop.
Save davidvandenbor/6999431 to your computer and use it in GitHub Desktop.
WordPress: styleswitcher custom fields
<?php
// Styleswitcher
global $post;
$styleswitch=get_post_meta($post->ID, 'styleswitch', true, null);
if ($styleswitch == "") {
$styleswitch="app";
}
wp_enqueue_style('roots_styleswitch', get_template_directory_uri() . '/assets/css/'.$styleswitch.'.css', false, null);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment