This file contains hidden or 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
<?php | |
// Add support for JetPack infinite scroll | |
function afn_infinite_scroll() { | |
add_theme_support( 'infinite-scroll', array( | |
'container' => 'content', | |
'footer' => 'footer', | |
'render' => 'genesis_do_loop' | |
) ); |
This file contains hidden or 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
//* Show custom menu in Footer | |
add_action( 'genesis_footer', 'sk_custom_menu_in_footer' ); | |
function sk_custom_menu_in_footer() { | |
$class = 'menu genesis-nav-menu menu-footer'; | |
$args = array( | |
'menu' => 'Footer Menu', // Enter name of your custom menu here | |
'container' => '', | |
'menu_class' => $class, |