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' ); // support alig-wide add_theme_support( 'align-wide' ); add_theme_support( "wp-block-styles" ); load_theme_textdomain( 'business-article-ship', get_template_directory() . '/languages' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary', 'business-article-ship' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Gallery post format add_theme_support( 'post-formats', array( 'gallery' )); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); } endif; add_action( 'after_setup_theme', 'business_article_ship_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 business_article_ship_content_width() { $GLOBALS['content_width'] = apply_filters( 'business_article_ship_content_width', 640 ); } add_action( 'after_setup_theme', 'business_article_ship_content_width', 0 ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function business_article_ship_widgets_init() { //Footer widget columns $business_article_ship_widget_num = absint(get_theme_mod( 'business_article_ship_footer_widgets', '4' )); for ( $i=1; $i <= $business_article_ship_widget_num; $i++ ) : register_sidebar( array( 'name' => esc_html__( 'Footer Column', 'business-article-ship' ) . $i, 'id' => 'footer-' . $i, 'description' => '', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); endfor; register_sidebar( array( 'name' => esc_html__( 'Blog Sidebar', 'business-article-ship' ), 'id' => 'primary-sidebar', 'description' => esc_html__( 'Add widgets here.', 'business-article-ship' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Sidebar 2', 'business-article-ship' ), 'id' => 'sidebar-2', 'description' => esc_html__( 'Add widgets here.', 'business-article-ship' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Sidebar 3', 'business-article-ship' ), 'id' => 'sidebar-3', 'description' => esc_html__( 'Add widgets here.', 'business-article-ship' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } add_action( 'widgets_init', 'business_article_ship_widgets_init' ); /** * Excerpt More */ function business_article_ship_excerpt_more( $more ) { if ( is_admin() ) { return $more; } return '…'; } add_filter('excerpt_more', 'business_article_ship_excerpt_more'); /** * Custom excerpt length. */ function business_article_ship_excerpt_length() { $length= intval(get_theme_mod('business_article_ship_posts_excerpt_length',30)); return $length; } add_filter('excerpt_length', 'business_article_ship_excerpt_length'); /* script goes here */ function business_article_ship_scripts() { wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css', array(), '5.3.3'); wp_enqueue_style( 'bootstrap-icons', get_template_directory_uri() . '/css/bootstrap-icons.css', array(), '5.3.3'); wp_enqueue_style( 'business-article-ship-style', get_template_directory_uri() . '/style.css', array(), wp_get_theme()->get('Version')); wp_style_add_data('business-article-ship-style', 'rtl', 'replace'); wp_enqueue_style( 'm-customscrollbar', get_template_directory_uri() . '/css/jquery.mCustomScrollbar.css', array(), '3.1.5'); wp_enqueue_style( 'raleway-google-fonts', 'https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap', array(), '1.0'); wp_enqueue_style( 'open-sans-google-fonts', 'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap', array(), '1.0'); wp_enqueue_style( 'owl-carousel-css', get_template_directory_uri() . '/css/owl.carousel' . '.css', array(), '2.3.4' ); // Block stylesheet. wp_enqueue_style( 'business-article-ship-block-style', get_theme_file_uri( '/css/blocks-styles.css' ), array( 'business-article-ship-style' ), '1.0' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } wp_enqueue_script( 'jquery-easing', get_template_directory_uri() . '/js/jquery.easing.1.3.js', array('jquery'), '1.3', true ); wp_enqueue_script( 'resize-sensor', get_template_directory_uri() . '/js/ResizeSensor.js',array(),'1.0.0', true ); wp_enqueue_script( 'm-customscrollbar-js', get_template_directory_uri() . '/js/jquery.mCustomScrollbar.js',array(),'3.1.5', true ); wp_enqueue_script( 'html5shiv',get_template_directory_uri().'/js/html5shiv.js',array(), '3.7.3'); wp_script_add_data( 'html5shiv', 'conditional', 'lt IE 9' ); wp_enqueue_script( 'respond', get_template_directory_uri().'/js/respond.js' ); wp_script_add_data( 'respond', 'conditional', 'lt IE 9' ); wp_enqueue_script( 'bootstrap', get_template_directory_uri().'/js/bootstrap.min.js', array(), '5.3.3', true ); wp_enqueue_script( 'business-article-ship-main-js', get_template_directory_uri() . '/js/main.js', array('jquery', 'customize-preview'), '1.0', true ); wp_enqueue_script( 'owl-carouselscript', get_template_directory_uri() . '/js/owl.carousel' . '.js', array( 'jquery' ), '2.3.4', true ); } add_action( 'wp_enqueue_scripts', 'business_article_ship_scripts' ); /** * Custom search form */ function business_article_ship_search_form( $form ) { $form = '
'; return $form; } add_filter( 'get_search_form', 'business_article_ship_search_form', 100 ); /** * Add a pingback url auto-discovery header for singularly identifiable articles. */ function business_article_ship_pingback_header() { if ( is_singular() && pings_open() ) { printf( '' . "\n", get_bloginfo( 'pingback_url' ) ); } } add_action( 'wp_head', 'business_article_ship_pingback_header' ); // Add WooCommerce support to the theme function business_article_ship_add_woocommerce_support() { add_theme_support( 'woocommerce' ); } add_action( 'after_setup_theme', 'business_article_ship_add_woocommerce_support' ); // Change the number of product columns in WooCommerce shop page function business_article_ship_change_woocommerce_shop_columns( $columns ) { $columns = 3; // Change this number to your desired column count (e.g., 2, 3, 4, etc.) return $columns; } add_filter( 'loop_shop_columns', 'business_article_ship_change_woocommerce_shop_columns', 999 ); /** * Customizer additions. */ require get_parent_theme_file_path() . '/inc/customizer/customizer.php'; /** * Template functions */ require get_parent_theme_file_path() . '/inc/template-functions.php'; /** * Custom template tags for this theme. */ require get_parent_theme_file_path() . '/inc/template-tags.php'; /** * Custom template hooks for this theme. */ require get_parent_theme_file_path() . '/inc/template-hooks.php'; /** * Extra classes for this theme. */ require get_parent_theme_file_path() . '/inc/extras.php'; /**getstart*/ require get_template_directory() . '/inc/business-article-ship-get-theme-info.php'; if ( ! function_exists( 'business_article_ship_admin_scripts' ) ) : function business_article_ship_admin_scripts($hook) { wp_enqueue_style( 'business-article-ship-get-theme-info-css', get_template_directory_uri() . '/css/business-article-ship-get-theme-info.css', false ); } endif; add_action( 'admin_enqueue_scripts', 'business_article_ship_admin_scripts' ); /** * Upgrade to Pro */ require_once( trailingslashit( get_template_directory() ) . 'business-article-ship-pro/class-customize.php' ); /** * Notices */ require_once get_parent_theme_file_path( '/inc/activation-notice/class-welcome-notice.php' ); /** * Theme DEMO IMPORT. */ require get_template_directory() . '/inc/quick-start-page.php'; /** * Theme TGM. */ require get_template_directory() . '/inc/tgm/tgm.php'; // extra customization require_once get_template_directory() . '/inc/theme-customizations.php'; // Add this function to theme for the deprecated error function business_article_ship_get_page_id_by_title($title) { $query = new WP_Query(array( 'post_type' => 'page', 'posts_per_page' => 1, 'post_status' => 'publish', 's' => $title, )); if ($query->have_posts()) { foreach ($query->posts as $post) { if (strcasecmp($post->post_title, $title) === 0) { return $post->ID; } } } return false; // Return false if not found }