esc_html__( 'Primary Menu', 'aamla' ), 'social' => esc_html__( 'Social Links', 'aamla' ), ] ); // Register nav menu locations. register_nav_menus( $locations ); /** * Filter custom background args. * * @since 1.0.0 * * @param arrray $bg_args Array of extra arguments for custom background. */ $bg_args = apply_filters( 'aamla_custom_bg_args', [ 'default-image' => '', 'default-preset' => 'default', 'default-position-x' => 'left', 'default-position-y' => 'top', 'default-size' => 'auto', 'default-repeat' => 'repeat', 'default-attachment' => 'scroll', 'default-color' => 'fff', 'wp-head-callback' => '_custom_background_cb', 'admin-head-callback' => '', 'admin-preview-callback' => '', ] ); /* * This theme designed to work with plain white background. Therefore, custom backgrounds * are not supported. However, You can use following line of code to set up the WordPress * core custom background feature. * add_theme_support( 'custom-background', $bg_args ); */ /** * Filter custom logo args. * * @since 1.0.0 * * @param arrray $logo_args Array of extra arguments for custom logo. */ $logo_args = apply_filters( 'aamla_custom_logo_args', [ 'width' => 120, 'height' => 120, 'flex-width' => true, 'flex-height' => false, 'header_text' => '', ] ); // Set up the WordPress core custom logo feature. add_theme_support( 'custom-logo', $logo_args ); /** * Filter custom header args. * * @since 1.0.0 * * @param arrray $header_args Array of extra arguments for custom header. */ $header_args = apply_filters( 'aamla_custom_header_args', [ 'default-image' => '', 'random-default' => false, 'width' => 1680, 'height' => 600, 'flex-width' => false, 'flex-height' => true, 'default_text_color' => '', 'header-text' => false, 'uploads' => true, 'wp-head-callback' => '', 'admin-head-callback' => '', 'admin-preview-callback' => '', 'video' => false, 'video-active-callback' => 'is_front_page', ] ); /* * This theme is designed to work without header image. Therefore, custom headers are not * supported. However, You can use following line of code to set up the WordPress * core custom header feature. * add_theme_support( 'custom-header', $header_args ); */ // Load core files. These files provide basic functionality to this theme. require_once get_parent_theme_file_path( 'lib/multiuse-functions.php' ); require_once get_parent_theme_file_path( 'lib/default-filters.php' ); require_once get_parent_theme_file_path( 'lib/customizer/customize-frontend.php' ); // Load files to build and customize website's front-end. require_once get_parent_theme_file_path( 'inc/controller.php' ); require_once get_parent_theme_file_path( 'inc/modifier.php' ); require_once get_parent_theme_file_path( 'inc/constructor.php' ); /** * Filter list of activated custom addon features for this theme. * * @since 1.0.0 * * @param arrray $addons Array of addon features for this theme. */ $addons = apply_filters( 'aamla_theme_support', [ 'widgetlayer', 'jetpack', 'typography', 'display-posts', 'media-manager', 'woocommerce', 'gutenberg', ] ); foreach ( $addons as $addon ) { $file_path = "add-on/{$addon}/class-{$addon}.php"; /** * Filter add-on file path. * * @since 1.0.0 * * @param string $file_path File path for the addon. * @param string $addon The Addon. */ $file_path = apply_filters( 'aamla_theme_support_file_path', $file_path, $addon ); include_once get_parent_theme_file_path( $file_path ); } // Add custom styles for visual editor to resemble the theme style. add_editor_style( [ 'assets/admin/css/editor-style.css', esc_url( aamla_font_url() ) ] ); // Load theme customizer initiation file at last. require_once get_parent_theme_file_path( 'lib/customizer/customize-register.php' ); } add_action( 'after_setup_theme', 'aamla_setup', 5 ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * @since 1.0.0 * * @global int $content_width */ function aamla_content_width() { $content_width = $GLOBALS['content_width']; /** * Filter content width of the theme. * * @since 1.0.0 * * @param $content_width integer */ $GLOBALS['content_width'] = apply_filters( 'aamla_content_width', $content_width ); } add_action( 'template_redirect', 'aamla_content_width', 0 ); /** * Register widget area. * * @since 1.0.0 * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function aamla_widgets_init() { /** * Filter register widget area args. * * @since 1.0.0 * * @param array $widgets { * Array of arguments for the sidebar being registered. * * @type string $name The name or title of the sidebar. * @type string $id The unique identifier by which the sidebar will be called. * @type string $description Description of the sidebar. * } */ $widgets = apply_filters( 'aamla_register_sidebar', [ [ 'name' => esc_html__( 'Sidebar Widgets', 'aamla' ), 'id' => 'sidebar', ], [ 'name' => esc_html__( 'Action Widgets', 'aamla' ), 'id' => 'header', ], [ 'name' => esc_html__( 'Footer Widgets', 'aamla' ), 'id' => 'footer', ], ] ); $defaults = [ 'description' => esc_html__( 'Add widgets here.', 'aamla' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ]; foreach ( $widgets as $widget ) { register_sidebar( wp_parse_args( $widget, $defaults ) ); } } add_action( 'widgets_init', 'aamla_widgets_init' ); /** * Get Google fonts url to register and enqueue. * * This function incorporates code from Twenty Fifteen WordPress Theme, * Copyright 2014-2016 WordPress.org & Automattic.com Twenty Fifteen is * distributed under the terms of the GNU GPL. * * @since 1.0.0 * * @return string Google fonts URL for the theme. */ function aamla_font_url() { $fonts = []; $fonts_url = ''; $subsets = 'latin,latin-ext'; /** * Filter google fonts to be used for the theme. * * @since 1.0.0 * * @param array $fonts Array of google fonts to be used for the theme. */ $fonts = apply_filters( 'aamla_fonts', $fonts ); if ( $fonts ) { $fonts_url = add_query_arg( [ 'family' => rawurlencode( implode( '|', $fonts ) ), 'subset' => rawurlencode( $subsets ), ], 'https://fonts.googleapis.com/css' ); } /** * Filter google font url. * * @since 1.0.0 * * @param string $fonts_url Google fonts url. */ return apply_filters( 'aamla_font_url', $fonts_url ); } /** * Handles JavaScript detection. * * Adds a `js` class to the root `` element when JavaScript is detected. * * This function incorporates code from Twenty Seventeen WordPress Theme, * Copyright 2016-2017 WordPress.org. Twenty Seventeen is distributed * under the terms of the GNU GPL. * * @since 1.0.0 */ function aamla_javascript_detection() { echo "\n"; } add_action( 'wp_head', 'aamla_javascript_detection', 0 ); /** * Enqueue scripts and styles. * * @since 1.0.0 */ function aamla_scripts() { // Theme stylesheet. wp_enqueue_style( 'aamla-style', get_stylesheet_uri() ); wp_style_add_data( 'aamla-style', 'rtl', 'replace' ); wp_add_inline_style( 'aamla-style', aamla_get_inline_css() ); // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'aamla-fonts', esc_url( aamla_font_url() ), [], null ); // Theme localize scripts data. $l10n = apply_filters( 'aamla_localize_script_data', [ 'menu' => 'primary-menu', // ID of nav-menu first UL element. 'close' => aamla_get_icon( [ 'icon' => 'close' ] ), ] ); // Theme scripts. wp_enqueue_script( 'aamla-scripts', get_theme_file_uri( '/scripts.js' ), [], '1.0.0', true ); wp_localize_script( 'aamla-scripts', 'aamlaScreenReaderText', $l10n ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'aamla_scripts' ); /** * Add preconnect for Google Fonts. * * This function incorporates code from Twenty Seventeen WordPress Theme, * Copyright 2016-2017 WordPress.org. Twenty Seventeen is distributed * under the terms of the GNU GPL. * * @since 1.0.0 * * @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 aamla_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'aamla-fonts', 'queue' ) && 'preconnect' === $relation_type ) { $urls[] = [ 'href' => 'https://fonts.gstatic.com', 'crossorigin', ]; } return $urls; } add_filter( 'wp_resource_hints', 'aamla_resource_hints', 10, 2 ); /* * Note: Do not add any custom code here. Please use a custom plugin or child theme, so that your * customizations aren't lost during theme updates. */