'main-content', 'footer_widgets' => ( ( ( class_exists( 'Jetpack_User_Agent_Info' ) && method_exists( 'Jetpack_User_Agent_Info', 'is_ipad' ) && Jetpack_User_Agent_Info::is_ipad() ) || ( function_exists( 'jetpack_is_mobile' ) && jetpack_is_mobile() ) ) || is_active_sidebar( 'sidebar-2' ) ), 'footer' => 'footer-widgets', ); add_theme_support( 'infinite-scroll', $settings ); add_theme_support( 'tonesque' ); add_theme_support( 'jetpack-responsive-videos' ); add_theme_support( 'social-links', array( 'facebook', 'twitter', 'linkedin', 'tumblr', 'google_plus', ) ); } add_action( 'after_setup_theme', 'bexley_infinite_scroll_init' ); /** * get social links from jetpack publicise functionality * http://jetpack.me/support/social-links/ */ function bexley_social_links() { $social_links = array( 'twitter', 'facebook', 'tumblr', 'linkedin', 'google_plus', ); $links = ''; foreach( $social_links as $social ) { $url = get_theme_mod( 'jetpack-' . $social ); if ( $url ) { $links .= '' . $social . ''; } } if ( $links ) { echo ''; } }