'' . __('expand child menu', 'beyond-expectations') . '', 'collapse' => '' . __('collapse child menu', 'beyond-expectations') . '', )); if (is_singular() && comments_open() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } } add_action('wp_enqueue_scripts', 'beyond_expectations_enqueue_scripts_setup'); /* ================================================================================================ 3.0 - Theme Setup ================================================================================================ */ function beyond_expectations_theme_setup() { // Enable and activate add theme support (title tag) for Beyond Expectations. add_theme_support('title-tag'); // Enable and activate add theme support (automatica feed links) for Beyond Expectations. add_theme_support('automatic-feed-links'); // Enable and activate add theme support (html5) for Beyond Expectations. add_theme_support('html5', array( 'comment-list', 'comment-form', 'search-form', 'caption' )); // add_theme_support('custom-background', array( 'default' => 'ffffff', )); add_theme_support('post-thumbnails'); add_theme_support('beyond-expectations-banner', 840, 260, true); register_nav_menus(array( 'primary-navigation' => esc_html__('Primary Navigation', 'beyond-expectations'), 'social-navigation' => esc_html__('Social Navigation', 'beyond-expectations'), )); // Enable and Activate Load Text Domain for Translation load_theme_textdomain('beyond-expectations'); } add_action('after_setup_theme', 'beyond_expectations_theme_setup'); /* ================================================================================================ 4.0 - Register Sidebars ================================================================================================ */ function beyond_expectations_register_sidebars_setup() { register_sidebar(array( 'name' => __('Primary Sidebar', 'beyond-expectations'), 'id' => 'primary', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => __('Secondary Sidebar', 'beyond-expectations'), 'id' => 'secondary', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => __('Custom Sidebar', 'beyond-expectations'), 'id' => 'custom', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); } add_action('widgets_init', 'beyond_expectations_register_sidebars_setup'); /* ================================================================================================ 5.0 - Required Files ================================================================================================ */ require_once(get_template_directory() . '/includes/custom-header.php'); require_once(get_template_directory() . '/includes/template-tags.php'); /* ================================================================================================ 5.0 - Social Navigation ================================================================================================ */ if (!function_exists('beyond_expectations_social_navigation_setup')) { function beyond_expectations_social_navigation_setup() { if(has_nav_menu('social-navigation')){ wp_nav_menu(array( 'theme_location' => 'social-navigation', 'container' => 'div', 'container_id' => 'menu-social', 'container_class' => 'menu-social', 'menu_id' => 'menu-social-items', 'menu_class' => 'menu-items', 'depth' => 1, 'link_before' => '', 'link_after' => '', 'fallback_cb' => '', )); }; } }