tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
add_image_size( 'anyonepage-featured-image', 800, 9999 );
add_image_size( 'anyonepage-portfolio-featured-image', 800, 9999 );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary Menu', 'anyonepage' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
/*
* Enable support for Post Formats.
* See https://developer.wordpress.org/themes/functionality/post-formats/
*/
add_theme_support( 'post-formats', array(
'aside',
'image',
'video',
'quote',
'link',
'gallery',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'anyonepage_custom_background_args', array(
'default-color' => 'eeeeee',
'default-image' => '',
) ) );
}
endif;
add_action( 'after_setup_theme', 'anyonepage_setup' );
function anyonepage_logo() {
add_theme_support('custom-logo', array(
'size' => 'anyonepage-logo',
'flex-height' => true,
'flex-width' => true,
));
}
add_action('after_setup_theme', 'anyonepage_logo');
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function anyonepage_content_width() {
$GLOBALS['content_width'] = apply_filters( 'anyonepage_content_width', 640 );
}
add_action( 'after_setup_theme', 'anyonepage_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function anyonepage_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'anyonepage' ),
'description' => esc_html__( 'Widgets in this sidebar will appear throughout the site. It is the default sidebar if no others are in use.', 'anyonepage' ),
'id' => 'sidebar-1',
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Top Widget: Left Column', 'anyonepage' ),
'description' => esc_html__( 'This widget will appear under the full width widget', 'anyonepage' ),
'id' => 'top-widget-left',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Top Widget: Middle Column', 'anyonepage' ),
'description' => esc_html__( 'This widget will appear under the full width widget', 'anyonepage' ),
'id' => 'top-widget-middle',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Top Widget: Right Column', 'anyonepage' ),
'description' => esc_html__( 'This widget will appear under the full width widget', 'anyonepage' ),
'id' => 'top-widget-right',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Widgets', 'anyonepage' ),
'description' => esc_html__( 'Widgets appearing above the footer of the site.', 'anyonepage' ),
'id' => 'sidebar-footer',
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'anyonepage_widgets_init' );
/**
* Enqueue Foundation scripts and styles.
*
* @link: http://wordpress.tv/2014/06/11/steve-zehngut-build-a-wordpress-theme-with-foundation-and-underscores/
* @link: http://wordpress.tv/2014/03/31/steve-zehngut-theme-development-with-foundation-framework/
* @link: http://www.justinfriebel.com/wordpress-underscores-with-the-foundation-framework-09-23-2014/
*
*/
function anyonepage_foundation_enqueue() {
/* Add Foundation 6.2 CSS */
wp_enqueue_style( 'foundation', get_stylesheet_directory_uri() . '/assets/foundation/css/foundation.min.css' ); // This is the Foundation CSS
/* Add Foundation JS */
wp_enqueue_script( 'foundation-js', get_template_directory_uri() . '/assets/foundation/js/foundation.min.js', array( 'jquery' ), true );
//wp_enqueue_script( 'foundation-what-input', get_template_directory_uri() . '/assets/foundation/js/what-input.js', array( 'jquery' ), true );
/* Foundation Init JS */
wp_enqueue_script( 'anyonepage-foundation-init', get_template_directory_uri() . '/foundation.js', array( 'jquery' ), true ); // Small (author) customized JS script to start the Foundation library, sitting freely in the Theme folder
/* Add Custom Fonts */
wp_enqueue_style( 'anyonepage-local-fonts', get_template_directory_uri() . '/assets/fonts/custom-fonts.css' );
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/assets/fonts/font-awesome.css' );
}
add_action( 'wp_enqueue_scripts', 'anyonepage_foundation_enqueue' );
/**
* Enqueue scripts and styles.
*/
function anyonepage_scripts() {
wp_enqueue_style( 'anyonepage-style', get_stylesheet_uri() );
/* Include Dashicons for the front-end too */
wp_enqueue_style( 'dashicons' );
/* Conditional stylesheet only for Front Page Template */
if ( is_page_template( 'page-templates/frontpage-portfolio.php' ) ) {
wp_enqueue_script( 'anyonepage-front-scripts', get_stylesheet_directory_uri() . '/assets/js/frontpage-functions.js', array( 'jquery' ), '20160515', true );
/* Slick Carousel */
wp_enqueue_script( 'slick_carousel', get_stylesheet_directory_uri() . '/assets/js/slick/slick.min.js', array( 'jquery' ), '20160515', true );
wp_enqueue_style( 'slick_style', get_stylesheet_directory_uri() . '/assets/js/slick/slick.css' );
wp_enqueue_style( 'slick_theme_style', get_stylesheet_directory_uri() . '/assets/js/slick/slick-theme.css' );
}
/* Custom navigation script */
wp_enqueue_script( 'anyonepage-navigation', get_template_directory_uri() . '/assets/js/navigation-custom.js', array(), '20120206', true );
/* Toggle Main Search script */
wp_enqueue_script( 'anyonepage-toggle-search', get_template_directory_uri() . '/assets/js/toggle-search.js', array( 'jquery' ), '20150925', true );
/* Masonry for Footer widgets */
wp_enqueue_script( 'anyonepage-masonry', get_template_directory_uri() . '/assets/js/masonry-settings.js', array( 'masonry' ), '20150925', true );
/* Add dynamic back to top button */
wp_enqueue_script( 'anyonepage-topbutton', get_template_directory_uri(). '/assets/js/topbutton.js', array( 'jquery' ), '20150926', true );
wp_enqueue_script( 'anyonepage-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix.js', array(), '20151215', true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'anyonepage_scripts' );
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file - only if Jetpack is active
*/
if ( class_exists( 'Jetpack') ) {
require get_template_directory() . '/inc/jetpack.php';
}
/**
*
* Admin styles
*
**/
function anyonepage_load_custom_wp_admin_style( $hook ) {
if ( 'appearance_page_about-anyonepage' !== $hook ) {
return;
}
wp_enqueue_style( 'anyonepage-custom-admin-css', get_template_directory_uri() . '/assets/stylesheets/admin.css', false, '1.0.0' );
}
add_action( 'admin_enqueue_scripts', 'anyonepage_load_custom_wp_admin_style' );
/**
* -----------------------------------------------------------------------------
* anyonepage custom functions below
* -----------------------------------------------------------------------------
*/
function anyonepage_google_fonts() {
$query_args = array(
'family' => 'Roboto:300,400,500,700,900'
);
wp_register_style( 'anyonepagegooglefonts', add_query_arg( $query_args, "//fonts.googleapis.com/css" ), array(), null );
wp_enqueue_style( 'anyonepagegooglefonts');
}
/**
* Customize The Archive Title output
*/
function anyonepage_modify_archive_title( $title ) {
if( is_page_template( 'archive-jetpack-portfolio.php' ) || is_page_template( 'archive-jetpack-testimonial.php' ) ) {
return esc_html__( 'All ', 'anyonepage' ) . $title;
} else {
return $title;
}
}
add_filter( 'get_the_archive_title', 'anyonepage_modify_archive_title', 10, 1 );
/*
* Add Excerpts to Pages
*/
function anyonepage_add_excerpt_to_pages() {
add_post_type_support( 'page', 'excerpt' );
}
add_action( 'init', 'anyonepage_add_excerpt_to_pages' );
/**
* Modify Underscores nav menus to work with Foundation
*/
function anyonepage_nav_menu( $menu ) {
$menu = str_replace( 'menu-item-has-children', 'menu-item-has-children has-dropdown', $menu );
$menu = str_replace( 'sub-menu', 'sub-menu dropdown', $menu );
return $menu;
}
add_filter( 'wp_nav_menu', 'anyonepage_nav_menu' );
/**
* Walker Menu for Front Page nav
*/
class anyonepage_front_page_walker extends Walker_Nav_Menu {
// add classes to ul sub-menus
function start_lvl( &$output, $depth = 0, $args = array() ) {
// depth dependent classes
$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
$display_depth = ( $depth + 1); // because it counts the first submenu as 0
$classes = array(
'sub-menu',
( $display_depth % 2 ? 'menu-odd' : 'menu-even' ),
( $display_depth >=2 ? 'sub-sub-menu' : '' ),
'menu-depth-' . $display_depth
);
$class_names = implode( ' ', $classes );
// build html
$output .= "\n" . $indent . '' . "\n";
}
// add main/sub classes to li's and links
function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
global $wp_query;
$indent = ( $depth > 0 ? str_repeat( "\t", $depth ) : '' ); // code indent
// depth dependent classes
$depth_classes = array(
( $depth == 0 ? 'main-menu-item' : 'sub-menu-item' ),
( $depth >=2 ? 'sub-sub-menu-item' : '' ),
( $depth % 2 ? 'menu-item-odd' : 'menu-item-even' ),
'menu-item-depth-' . $depth
);
$depth_class_names = esc_attr( implode( ' ', $depth_classes ) );
// passed classes
$classes = empty( $item->classes ) ? array() : (array) $item->classes;
$li_class_names = esc_attr( implode( ' ', apply_filters( '', array_filter( $classes ), $item ) ) );
$fa_class_names = esc_attr( implode( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) ) );
// build html
/*
* Card Front
*/
$foundationTouch = 'ontouchstart="this.classList.toggle(\'hover\');"';
$output .= $indent . '