Skip to content

Instantly share code, notes, and snippets.

@motorcitymobi
Last active December 19, 2015 11:38
Show Gist options
  • Save motorcitymobi/5948685 to your computer and use it in GitHub Desktop.
Save motorcitymobi/5948685 to your computer and use it in GitHub Desktop.
Combing Zurb's Orbit with the Genesis Framework.
<?php
/*
Template Name: Orbit (Foundation)
*/
add_action( 'genesis_after', 'mobile_do_orbit_demo' );
function mobile_do_orbit_demo() { ?>
<!-- Check for Zepto support, load jQuery if necessary -->
<script>
document.write('<script src=/js/vendor/'
+ ('__proto__' in {} ? 'zepto' : 'jquery')
+ '.js><\/script>');
</script>
<script>
jQuery(document).ready(function($) {
$(function(){
$(document).foundation();
})
});
</script>
<?php
}
add_action( 'genesis_after', 'mobile_do_orbit_scripts' );
function mobile_do_orbit_scripts() {
wp_enqueue_script( 'foundation-cloud' );
wp_enqueue_script( 'orbit-cloud' );
}
// do genesis
genesis();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment