Last active
August 29, 2015 14:23
-
-
Save atwellpub/aac08a3a82cabbd363f5 to your computer and use it in GitHub Desktop.
Hack fix for rev slider + landing pages + richer WordPress theme.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ------------------------------------------------------------------------ */ | |
/* INBOUND NOW | |
/* ------------------------------------------------------------------------ */ | |
add_action('wp_footer' , 'inbound_rev_customizations'); | |
function inbound_rev_customizations() { | |
global $post; | |
if (!isset($post) || $post->post_type != 'landing-pages') { | |
return; | |
} | |
wp_enqueue_style('rev-settings' , 'http://site.com/wp-content/plugins/revslider/rs-plugin/css/settings.css?rev=4.2&ver=4.2.2'); | |
wp_enqueue_style('rev-dynamic-captions' , 'http://site.com/wp-content/plugins/revslider/rs-plugin/css/dynamic-captions.css?rev=4.2&ver=4.2.2'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment