Skip to content

Instantly share code, notes, and snippets.

@atwellpub
Last active August 29, 2015 14:23
Show Gist options
  • Save atwellpub/aac08a3a82cabbd363f5 to your computer and use it in GitHub Desktop.
Save atwellpub/aac08a3a82cabbd363f5 to your computer and use it in GitHub Desktop.
Hack fix for rev slider + landing pages + richer WordPress theme.
/* ------------------------------------------------------------------------ */
/* 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