false, 'header-text' => false, ) ); add_theme_support( 'custom-logo', array( 'height' => 50, 'width' => 100, 'flex-height' => true, ) ); register_nav_menus( array( 'primary' => __( 'Primary Menu', 'weight-loss-club' ), ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. */ add_theme_support( 'post-formats', array('image','video','gallery','audio',) ); add_editor_style( 'editor-style.css' ); } endif; // weight_loss_club_setup add_action( 'after_setup_theme', 'weight_loss_club_setup' ); function weight_loss_club_the_breadcrumb() { echo ''; } function weight_loss_club_widgets_init() { register_sidebar( array( 'name' => __( 'Blog Sidebar', 'weight-loss-club' ), 'description' => __( 'Appears on blog page sidebar', 'weight-loss-club' ), 'id' => 'sidebar-1', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Page Sidebar', 'weight-loss-club' ), 'id' => 'sidebar-2', 'description' => __( 'Add widgets here to appear in your sidebar on pages.', 'weight-loss-club' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => __( 'Sidebar 3', 'weight-loss-club' ), 'id' => 'sidebar-3', 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'weight-loss-club' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar(array( 'name' => __('Shop Sidebar', 'weight-loss-club'), 'description' => __('Sidebar for WooCommerce shop pages', 'weight-loss-club'), 'id' => 'woocommerce-sidebar', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); register_sidebar(array( 'name' => __('Single Product Sidebar', 'weight-loss-club'), 'description' => __('Sidebar for single product pages', 'weight-loss-club'), 'id' => 'woocommerce-single-sidebar', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', )); $weight_loss_club_widget_areas = get_theme_mod('weight_loss_club_footer_widget_areas', '4'); for ($weight_loss_club_i=1; $weight_loss_club_i<=$weight_loss_club_widget_areas; $weight_loss_club_i++) { register_sidebar( array( 'name' => __( 'Footer Widget ', 'weight-loss-club' ) . $weight_loss_club_i, 'id' => 'footer-' . $weight_loss_club_i, 'description' => '', 'before_widget' => '', 'before_title' => '

', 'after_title' => '

', ) ); } } add_action( 'widgets_init', 'weight_loss_club_widgets_init' ); // Change number of products per row to 3 add_filter('loop_shop_columns', 'weight_loss_club_loop_columns'); if (!function_exists('weight_loss_club_loop_columns')) { function weight_loss_club_loop_columns() { $colm = get_theme_mod('weight_loss_club_products_per_row', 4); // Default to 3 if not set return $colm; } } // Use the customizer setting to set the number of products per page function weight_loss_club_products_per_page($cols) { $cols = get_theme_mod('weight_loss_club_products_per_page', 8); // Default to 8 if not set return $cols; } add_filter('loop_shop_per_page', 'weight_loss_club_products_per_page', 8); function weight_loss_club_scripts() { wp_enqueue_style( 'bootstrap-css', esc_url(get_template_directory_uri())."/css/bootstrap.css" ); wp_enqueue_style('weight-loss-club-style', get_stylesheet_uri(), array() ); wp_style_add_data('weight-loss-club-style', 'rtl', 'replace'); require get_parent_theme_file_path( '/inc/color-scheme/custom-color-control.php' ); wp_add_inline_style( 'weight-loss-club-style',$weight_loss_club_color_scheme_css ); wp_enqueue_style( 'owl.carousel-css', esc_url(get_template_directory_uri())."/css/owl.carousel.css" ); wp_enqueue_style( 'weight-loss-club-default', esc_url(get_template_directory_uri())."/css/default.css" ); wp_enqueue_style( 'weight-loss-club-style', get_stylesheet_uri() ); wp_enqueue_script( 'owl.carousel-js', esc_url(get_template_directory_uri()). '/js/owl.carousel.js', array('jquery') ); wp_enqueue_script( 'bootstrap-js', esc_url(get_template_directory_uri()). '/js/bootstrap.js', array('jquery') ); wp_enqueue_script( 'weight-loss-club-theme', esc_url(get_template_directory_uri()) . '/js/theme.js' ); wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/css/fontawesome-all.css" ); wp_enqueue_style( 'weight-loss-club-block-style', esc_url( get_template_directory_uri() ).'/css/blocks.css' ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // font-family $weight_loss_club_body_font = esc_html(get_theme_mod('weight_loss_club_body_fonts')); $weight_loss_club_para_font = esc_html(get_theme_mod('weight_loss_club_para_fonts')); if ($weight_loss_club_body_font) { wp_enqueue_style('weight-loss-club-body-fonts', 'https://fonts.googleapis.com/css?family=' . urlencode($weight_loss_club_body_font)); } else { wp_enqueue_style('Roboto', 'https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900'); } if ($weight_loss_club_para_font) { wp_enqueue_style('weight-loss-club-para-fonts', 'https://fonts.googleapis.com/css?family=' . urlencode($weight_loss_club_para_font)); } else { wp_enqueue_style('Open Sans', 'https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800'); } } add_action( 'wp_enqueue_scripts', 'weight_loss_club_scripts' ); /** * Implement the Custom Header feature. */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require get_template_directory() . '/inc/template-tags.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/customizer.php'; /** * Sanitization Callbacks. */ require get_template_directory() . '/inc/sanitization-callbacks.php'; /** * Webfont-Loader. */ require get_template_directory() . '/inc/wptt-webfont-loader.php'; /** * Customizer additions. */ require get_template_directory() . '/inc/upgrade-to-pro.php'; /** * Google Fonts */ require get_template_directory() . '/inc/gfonts.php'; /** * select . */ require get_template_directory() . '/inc/select/category-dropdown-custom-control.php'; function weight_loss_club_setup_theme() { if ( ! defined( 'WEIGHT_LOSS_CLUB_PREMIUM_PAGE' ) ) { define('WEIGHT_LOSS_CLUB_PREMIUM_PAGE',__('https://www.theclassictemplates.com/products/weight-loss-wordpress-theme','weight-loss-club')); } } add_action('after_setup_theme', 'weight_loss_club_setup_theme'); // logo if ( ! function_exists( 'weight_loss_club_the_custom_logo' ) ) : /** * Displays the optional custom logo. * * Does nothing if the custom logo is not available. * */ function weight_loss_club_the_custom_logo() { if ( function_exists( 'the_custom_logo' ) ) { the_custom_logo(); } } endif;