240, 'width' => 240, 'flex-height' => true, ) ); add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 1200, 9999 ); $header_args = array( 'width' => 1600, 'flex-width' => true, 'uploads' => true, 'random-default' => true, 'header-text' => false, ); add_theme_support( 'custom-header', $header_args ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'agency-starter' ), 'social' => __( 'Social Links Menu', 'agency-starter' ), ) ); $backbround_args = array( 'default-color' => '#ffffff', 'default-image' => '', 'default-repeat' => '', 'default-position-x' => '', 'default-attachment' => '', 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => '', 'admin-preview-callback' => '' ); add_theme_support( 'custom-background', $backbround_args ); /* * Enable support for Post Formats. */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat', ) ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); // Indicate widget sidebars can use selective refresh in the Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); } endif; // agency_starter_setup add_action( 'after_setup_theme', 'agency_starter_setup' ); /* * Theme uri can be changed in child themes by overriding function */ if (!function_exists('agency_starter_theme_uri')) { function agency_starter_theme_uri(){ return 'https://wpfreetheme.space/product/agency-starter-theme/'; } } add_action( 'after_setup_theme', 'agency_starter_default_header' ); /** * Add Default Custom Header Image To * @return void */ function agency_starter_default_header() { add_theme_support( 'custom-header', apply_filters( 'agency_starter_custom_header_args', array( 'default-text-color' => '#ffffff', 'width' => 1280, 'height' => 340, 'flex-width' => true, 'flex-height' => true, ) ) ); } /** * * @global int $content_width * * */ function agency_starter_content_width() { $GLOBALS['content_width'] = apply_filters( 'agency_starter_content_width', 840 ); } add_action( 'after_setup_theme', 'agency_starter_content_width', 0 ); /** * Add preconnect for Google Fonts. * * @param array $urls URLs to print for resource hints. * @param string $relation_type The relation type the URLs are printed. * @return array $urls URLs to print for resource hints. */ function agency_starter_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'agency-starter-fonts', 'queue' ) && 'preconnect' === $relation_type ) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } return $urls; } add_filter( 'wp_resource_hints', 'agency_starter_resource_hints', 10, 2 ); /** * Registers a widget area. */ function agency_starter_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Main Sidebar', 'agency-starter' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'agency-starter' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'WooCommerce', 'agency-starter' ), 'id' => 'woocommerce-sidebar-1', 'description' => esc_html__( 'Add widgets here to appear in WooCommerce sidebar.', 'agency-starter' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); /* Footer widget area */ register_sidebar( array( 'name' => esc_html__( 'Footer 1', 'agency-starter' ), 'id' => 'footer-sidebar-1', 'description' => esc_html__( 'Add widgets here to appear in your footer.', 'agency-starter' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 2', 'agency-starter' ), 'id' => 'footer-sidebar-2', 'description' => esc_html__( 'Add widgets here to appear in your footer.', 'agency-starter' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 3', 'agency-starter' ), 'id' => 'footer-sidebar-3', 'description' => esc_html__( 'Add widgets here to appear in your footer.', 'agency-starter' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer 4', 'agency-starter' ), 'id' => 'footer-sidebar-4', 'description' => esc_html__( 'Add widgets here to appear in your footer.', 'agency-starter' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'agency_starter_widgets_init' ); /** * @since 1.0.0 * An error notice that can be displayed if the Minimum PHP version is not met. */ function agency_starter_php_not_met_notice() { ?>

urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); } return esc_url( $fonts_url ); } endif; /** * Handles JavaScript detection. * Adds a `js` class to the root `` element when JavaScript is detected. */ function agency_starter_javascript_detection() { echo "\n"; } add_action( 'wp_head', 'agency_starter_javascript_detection', 0 ); /** * @since 1.0.0 * Switches back to the previous theme if the minimum PHP version is not met. */ function agency_starter_test_for_min_php() { // Compare versions. if ( version_compare( PHP_VERSION, agency_starter_php_version, '<' ) ) { // Site doesn't meet themes min php requirements, add notice... add_action( 'admin_notices', 'agency_starter_php_not_met_notice' ); // ... and switch back to previous theme. switch_theme( get_option( 'theme_switched' ) ); return false; }; } /** * Enqueues scripts and styles. */ function agency_starter_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'agency-starter-fonts', agency_starter_fonts_url(), array(), null ); wp_enqueue_style( 'bootstrap', get_theme_file_uri( '/css/bootstrap.css' ), array(), '3.3.6'); // Add FontAwesome, used in the main stylesheet. wp_enqueue_style( 'fontawesome', get_template_directory_uri() . '/fonts/font-awesome/css/font-awesome.css', array(), '3.4.1' ); // Theme stylesheet. wp_enqueue_style( 'agency-starter-style', get_stylesheet_uri() ); // Load the html5 shiv. wp_enqueue_script( 'agency-starter-html5', get_template_directory_uri() . '/js/html5.js', array(), '3.7.3' ); wp_script_add_data( 'agency-starter-html5', 'conditional', 'lt IE 9' ); wp_enqueue_script( 'agency-starter-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20191010', true ); wp_enqueue_script( 'bootstrap', get_theme_file_uri( '/js/bootstrap.js' ), array( 'jquery' ), '3.3.7', true); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } if ( is_singular() && wp_attachment_is_image() ) { wp_enqueue_script( 'agency-starter-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20160816' ); } wp_enqueue_script( 'agency-starter-script', get_template_directory_uri() . '/js/navigation.js', array( 'jquery' ), '20191010', true ); wp_localize_script( 'agency-starter-script', 'agency_starter_screenReaderText', array( 'expand' => esc_html__( 'Expand child menu', 'agency-starter' ), 'collapse' => esc_html__( 'Collapse child menu', 'agency-starter' ), ) ); } add_action( 'wp_enqueue_scripts', 'agency_starter_scripts' ); /** * Enqueue styles for the block-based editor. */ function agency_starter_block_editor_styles() { // Add custom fonts. wp_enqueue_style( 'agency-starter-fonts', agency_starter_fonts_url(), array(), null ); } add_action( 'enqueue_block_editor_assets', 'agency_starter_block_editor_styles' ); /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * @since 1.0.0 * Set a constant that holds the theme's minimum supported PHP version. */ define( 'agency_starter_php_version', '5.6' ); /** * Immediately after theme switch is fired we we want to check php version and * revert to previously active theme if version is below our minimum. */ add_action( 'after_switch_theme', 'agency_starter_test_for_min_php' ); /** * @since 1.0.0 * Add WooCommerce product support to theme */ add_action( 'after_setup_theme', 'agency_starter_woocommerce_support' ); function agency_starter_woocommerce_support() { add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } /** * @since 1.0.0 * add home link. */ function agency_starter_nav_wrap() { $wrap = ''; return $wrap; } /** *TGM Plugin activation. */ require get_template_directory() . '/inc/class-tgm-plugin-activation.php'; add_action( 'tgmpa_register', 'agency_starter_activate_recommended_plugins' ); /** * Register recommended plugins. */ function agency_starter_activate_recommended_plugins() { $plugins = array( array( 'name' => __( 'Elementor Drag and Drop Page Builder', 'agency-starter' ), 'slug' => 'elementor', 'required' => false, ), array( 'name' => 'Contact Form 7', 'slug' => 'contact-form-7', 'required' => false, ), ); $config = array(); tgmpa( $plugins, $config ); } /** * WordPress Custom control style */ function agency_starter_customizer_styles() { ?>

%2$s    %4$s    %6$s    %7$s

', esc_attr( $class ), esc_html( $message ), esc_url( agency_starter_theme_url ), esc_html( $pro_notice ), esc_url( agency_starter_tutorial ), esc_html( $tutorial ), esc_html( $dismiss ) ); } endif;