esc_html__( 'Primary Menu', 'creativ-business' ), ) ); /* * 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', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'creativ_business_custom_background_args', array( 'default-color' => '#ffffff', 'default-image' => '', ) ) ); // Set up the WordPress core custom header feature. add_theme_support( 'custom-header', apply_filters( 'creativ_business_custom_header_args', array( 'default-image' => get_template_directory_uri() . '/assets/images/header-media.jpg', 'width' => 1400, 'height' => 320, 'flex-height' => true, 'header-text' => false, ) ) ); // Enable support for footer widgets. add_theme_support( 'footer-widgets', 4 ); // Load Supports. require_once get_template_directory() . '/inc/footer-widget-area.php'; global $creativ_business_default_options; $creativ_business_default_options = creativ_business_get_default_theme_options(); } endif; add_action( 'after_setup_theme', 'creativ_business_setup' ); /** * 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 creativ_business_content_width() { $GLOBALS['content_width'] = apply_filters( 'creativ_business_content_width', 640 ); } add_action( 'after_setup_theme', 'creativ_business_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function creativ_business_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Primary Sidebar', 'creativ-business' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here to appear in your Primary Sidebar.', 'creativ-business' ), 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'creativ_business_widgets_init' ); if ( ! function_exists( 'creativ_business_fonts_url' ) ) : /** * Register Google fonts. * * @since Creativ Business 1.0 * * @return string Google fonts URL for the theme. */ function creativ_business_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; // header fonts /* translators: If there are characters in your language that are not supported by Montserrat, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Montserrat: on or off', 'creativ-business' ) ) { $fonts[] = 'Montserrat:300,400,500,600,700'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), '//fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * Enqueue scripts and styles. */ function creativ_business_scripts() { $min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; $fonts_url = creativ_business_fonts_url(); if ( ! empty( $fonts_url ) ) { wp_enqueue_style( 'creativ-business-google-fonts', $fonts_url, array(), null ); } wp_enqueue_style( 'font-awesome', get_template_directory_uri() .'/assets/css/font-awesome' . $min . '.css', '', '2.2.1' ); wp_enqueue_style( 'slick-theme', get_template_directory_uri() .'/assets/css/slick-theme' . $min . '.css', '', '2.2.1' ); wp_enqueue_style( 'slick', get_template_directory_uri() .'/assets/css/slick' . $min . '.css', '', '2.2.1' ); wp_enqueue_style( 'creativ-business-style', get_stylesheet_uri(), array(), '1.4.0' ); wp_enqueue_script( 'creativ-business-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/skip-link-focus-fix' . $min . '.js', array(), '1.2.0', true ); wp_enqueue_script( 'jquery-slick', get_template_directory_uri() . '/assets/js/slick' . $min . '.js', array( 'jquery' ), '2.2.1', true ); wp_enqueue_script( 'matchHeight', get_template_directory_uri() . '/assets/js/jquery.matchHeight' . $min . '.js', array( 'jquery' ), '0.7.2', true ); wp_enqueue_script( 'creativ-business-custom', get_template_directory_uri() . '/assets/js/custom' . $min . '.js', array( 'jquery' ), '1.2.0', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'creativ_business_scripts' ); /** * Include default theme options. */ require_once get_template_directory() . '/inc/customizer/default.php'; /** * Load Layout Option. */ require_once get_template_directory() . '/inc/layout-option.php'; /** * Load theme core functions. */ require_once get_template_directory() . '/inc/core.php'; /** * Load hooks. */ require_once get_template_directory() . '/inc/functions/structure.php'; require_once get_template_directory() . '/inc/functions/basic.php'; require_once get_template_directory() . '/inc/functions/custom.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/customizer.php'; /** * Load TGM pluin activation file. */ require_once get_template_directory() . '/plugins/class-tgm-plugin-activation.php'; /** * Load Site Origin Bundle Hooks. */ require_once get_template_directory() . '/inc/functions/so-widgets.php'; /** * Load Theme SO Widgets. */ if ( class_exists( 'SiteOrigin_Widget' ) ) { // Theme widgets. $theme_widgets = array( 'featured-slider', 'latest-news', 'address', 'cta', 'team', ); $template_dir = get_template_directory(); foreach ( $theme_widgets as $widget ) { require_once $template_dir . '/inc/so-widgets/' . $widget . '/' . $widget . '.php'; } } function creativ_business_add_menu_parent_class( $items ) { $parents = array(); foreach ( $items as $item ) { //Check if the item is a parent item if ( $item->menu_item_parent && $item->menu_item_parent > 0 ) { $parents[] = $item->menu_item_parent; } } foreach ( $items as $item ) { if ( in_array( $item->ID, $parents ) ) { //Add "dropdown" class to parents $item->classes[] = 'dropdown'; } } return $items; } /** * Excerpt. */ if ( ! function_exists( 'creativ_business_excerpt_length' ) ) : /** * excerpt length. * * @param int $length in words. * */ function creativ_business_excerpt_length( $length ) { if ( is_admin() ) { return $length; } $length = creativ_business_get_option( 'excerpt_length' ); $length = ! empty( $length ) ? $length : '25'; return $length; } endif; add_filter( 'excerpt_length', 'creativ_business_excerpt_length', 999 ); if( ! function_exists( 'creativ_business_excerpt_more' ) ) : /** * @param string $more. * * Return string */ function creativ_business_excerpt_more( $more ) { if ( is_admin() ) { return $more; } /* translators: %s: post title */ $more = sprintf( __( ' "%s"', 'creativ-business' ), get_the_title( get_the_ID() ) ); return ' … ' . $more; } endif; add_filter('excerpt_more', 'creativ_business_excerpt_more'); /** * Get sidebar options. */ if ( ! function_exists( 'creativ_business_get_sidebar_options' ) ) : function creativ_business_get_sidebar_options() { global $wp_registered_sidebars; $output = array(); if ( ! empty( $wp_registered_sidebars ) && is_array( $wp_registered_sidebars ) ) { foreach ( $wp_registered_sidebars as $key => $sidebar ) { $output[ $key ] = $sidebar['name']; } } return $output; } endif; if ( ! function_exists( 'creativ_business_get_index_page_id' ) ) : /** * Get front index page ID. * * @param string $type Type. * @return int Corresponding Page ID. */ function creativ_business_get_index_page_id( $type = 'front' ) { $page = ''; switch ( $type ) { case 'front': $page = get_option( 'page_on_front' ); break; case 'blog': $page = get_option( 'page_for_posts' ); break; default: break; } $page = absint( $page ); return $page; } endif; if ( ! function_exists( 'creativ_business_content_is_pagebuilder' ) ) : /** * SiteOrigin Page Builder Content Check. * * Conditionally check if the current page/post was created with * the SiteOrigin Page Builder editor. * * @return bool True if builder page. */ function creativ_business_content_is_pagebuilder() { global $post; // Consider empty content the WP editor. if ( empty( $post ) ) { return false; } // Does pagebuilder content exist in custom fields? $panels_data = get_post_meta( $post->ID, 'panels_data', true ); return ( empty( $panels_data ) ) ? false : true; } endif; if ( ! function_exists( 'creativ_business_the_custom_logo' ) ) : /** * Render logo. */ function creativ_business_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif; /** * Imports a predefined demo. * @return [type] [description] */ function creativ_business_ocdi_import_files() { return array( array( 'import_file_name' => 'Demo Import', 'import_file_url' => get_template_directory_uri() . '/assets/demo-content/demo-content.xml', ), ); } add_filter( 'pt-ocdi/import_files', 'creativ_business_ocdi_import_files' ); /** * * Automatically assign "Front page", "Posts page" and menu locations after the importer is done * */ function creativ_business_ocdi_after_import_setup() { // Assign menus to their locations. $main_menu = get_term_by( 'name', 'Primary Menu', 'nav_menu' ); set_theme_mod( 'nav_menu_locations', array( 'primary' => $main_menu->term_id, ) ); // Assign front page and posts page (blog page). $front_page_id = get_page_by_title( 'Home' ); $blog_page_id = get_page_by_title( 'Blog' ); update_option( 'show_on_front', 'page' ); update_option( 'page_on_front', $front_page_id->ID ); update_option( 'page_for_posts', $blog_page_id->ID ); } add_action( 'pt-ocdi/after_import', 'creativ_business_ocdi_after_import_setup' ); // Disable the ProteusThemes branding notice after successful demo import add_filter( 'pt-ocdi/disable_pt_branding', '__return_true' ); /** *TGM Plugin activation. */ add_action( 'tgmpa_register', 'creativ_business_activate_recommended_plugins' ); /** * Register recommended plugins. */ function creativ_business_activate_recommended_plugins() { $plugins = array( array( 'name' => __( 'Page Builder by SiteOrigin', 'creativ-business' ), 'slug' => 'siteorigin-panels', 'required' => false, ), array( 'name' => __( 'SiteOrigin Widgets Bundle', 'creativ-business' ), 'slug' => 'so-widgets-bundle', 'required' => false, ), array( 'name' => __( 'Contact Form 7', 'creativ-business' ), 'slug' => 'contact-form-7', 'required' => false, ), array( 'name' => esc_html__( 'One Click Demo Import', 'creativ-business' ), 'slug' => 'one-click-demo-import', 'required' => false, ), ); $config = array(); tgmpa( $plugins, $config ); }