webworthydesign
9/25/2014 - 8:51 PM

Add this to the functions.php file (above the underscores enqueue) to add Foundation to Underscores

Add this to the functions.php file (above the underscores enqueue) to add Foundation to Underscores

<?php


function enqueue_foundation() {
    /* Add Foundation CSS */
    wp_enqueue_style( 'foundation-normalize', get_stylesheet_directory_uri() . '/foundation/css/normalize.css' );
    wp_enqueue_style( 'foundation', get_stylesheet_directory_uri() . '/foundation/css/foundation.css' );
    wp_enqueue_script( 'foundation-js', get_template_directory_uri() . '/foundation/js/foundation.min.js', array( 'jquery' ), '5', true );
    }
add_action( 'wp_enqueue_scripts', 'enqueue_foundation' );
/* Add Foundation footer */
function foundation_footer(){
    ?>
    <script type="text/javascript">
        jQuery(document).ready(function($) {
            $(document).foundation();
        });
    </script>
    <?php
}
add_filter('wp_footer','foundation_footer');


?>