esc_html__( 'Primary', 'business-development-coaching' ),
'social-menu' => esc_html__('Social Menu', 'business-development-coaching'),
)
);
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
add_theme_support(
'custom-background',
apply_filters(
'business_development_coaching_custom_background_args',
array(
'default-color' => '#fafafa',
'default-image' => '',
)
)
);
add_theme_support( 'customize-selective-refresh-widgets' );
add_theme_support(
'custom-logo',
array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
}
add_action( 'after_setup_theme', 'business_development_coaching_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_development_coaching_content_width() {
$GLOBALS['content_width'] = apply_filters( 'business_development_coaching_content_width', 640 );
}
add_action( 'after_setup_theme', 'business_development_coaching_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function business_development_coaching_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'business-development-coaching' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'business-development-coaching' ),
'before_widget' => '',
'before_title' => '
',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 1', 'business-development-coaching' ),
'id' => 'footer-1',
'description' => esc_html__( 'Add widgets here.', 'business-development-coaching' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 2', 'business-development-coaching' ),
'id' => 'footer-2',
'description' => esc_html__( 'Add widgets here.', 'business-development-coaching' ),
'before_widget' => '',
'before_title' => '',
)
);
register_sidebar(
array(
'name' => esc_html__( 'Footer 3', 'business-development-coaching' ),
'id' => 'footer-3',
'description' => esc_html__( 'Add widgets here.', 'business-development-coaching' ),
'before_widget' => '',
'before_title' => '',
)
);
}
add_action( 'widgets_init', 'business_development_coaching_widgets_init' );
function business_development_coaching_social_menu() {
if (has_nav_menu('social-menu')) :
wp_nav_menu(array(
'theme_location' => 'social-menu',
'container' => 'ul',
'menu_class' => 'social-menu menu',
'menu_id' => 'menu-social',
));
endif;
}
/**
font-family: "Inder", sans-serif;
font-family: "DM Serif Display", serif;
font-family: "Shadows Into Light", cursive;
* Enqueue scripts and styles.
*/
function business_development_coaching_scripts() {
// Load fonts locally
require_once get_theme_file_path('revolution/inc/wptt-webfont-loader.php');
$business_development_coaching_font_families = array(
'DM+Serif+Display:ital@0;1',
'Inder',
'Inter:wght@100..900',
'Shadows+Into+Light',
);
$business_development_coaching_fonts_url = add_query_arg( array(
'family' => implode( '&family=', $business_development_coaching_font_families ),
'display' => 'swap',
), 'https://fonts.googleapis.com/css2' );
wp_enqueue_style('business-development-coaching-google-fonts', wptt_get_webfont_url(esc_url_raw($business_development_coaching_fonts_url)), array(), '1.0.0');
// Font Awesome CSS
wp_enqueue_style('font-awesome-5', get_template_directory_uri() . '/revolution/assets/vendors/font-awesome-5/css/all.min.css', array());
wp_enqueue_style('owl.carousel.style', get_template_directory_uri() . '/revolution/assets/css/owl.carousel.css', array());
wp_enqueue_style( 'business-development-coaching-style', get_stylesheet_uri(), array(), BUSINESS_DEVELOPMENT_COACHING_VERSION );
require get_parent_theme_file_path( '/custom-style.php' );
wp_add_inline_style( 'business-development-coaching-style',$business_development_coaching_custom_css );
wp_style_add_data('business-development-coaching-style', 'rtl', 'replace');
wp_enqueue_script( 'business-development-coaching-navigation', get_template_directory_uri() . '/js/navigation.js', array(), BUSINESS_DEVELOPMENT_COACHING_VERSION, true );
wp_enqueue_script( 'owl.carousel.jquery', get_template_directory_uri() . '/revolution/assets/js/owl.carousel.js', array(), BUSINESS_DEVELOPMENT_COACHING_VERSION, true );
wp_enqueue_script( 'business-development-coaching-custom-js', get_template_directory_uri() . '/revolution/assets/js/custom.js', array('jquery'), BUSINESS_DEVELOPMENT_COACHING_VERSION, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'business_development_coaching_scripts' );
if (!function_exists('business_development_coaching_related_post')) :
/**
* Display related posts from same category
*
*/
function business_development_coaching_related_post($post_id){
$categories = get_the_category($post_id);
if ($categories) {
$category_ids = array();
$category = get_category($category_ids);
$categories = get_the_category($post_id);
foreach ($categories as $category) {
$category_ids[] = $category->term_id;
}
$count = $category->category_count;
if ($count > 1) { ?>
$category_ids,
'post__not_in' => array($post_id),
'post_type' => 'post',
'posts_per_page' => 3,
'post_status' => 'publish',
'ignore_sticky_posts' => true
);
$business_development_coaching_featured_query = new WP_Query($business_development_coaching_cat_post_args);
?>
have_posts()) :
while ($business_development_coaching_featured_query->have_posts()) : $business_development_coaching_featured_query->the_post();
?>
remove_setting( 'display_header_text' );
$wp_customize->remove_control( 'display_header_text' );
}
add_action( 'customize_register', 'business_development_coaching_remove_customize_register', 11 );
/**
* WooCommerce custom filters
*/
add_filter('loop_shop_columns', 'business_development_coaching_loop_columns');
if (!function_exists('business_development_coaching_loop_columns')) {
function business_development_coaching_loop_columns() {
$business_development_coaching_columns = get_theme_mod( 'business_development_coaching_per_columns', 3 );
return $business_development_coaching_columns;
}
}
/************************************************************************************/
add_filter( 'loop_shop_per_page', 'business_development_coaching_per_page', 20 );
function business_development_coaching_per_page( $business_development_coaching_cols ) {
$business_development_coaching_cols = get_theme_mod( 'business_development_coaching_product_per_page', 9 );
return $business_development_coaching_cols;
}
/************************************************************************************/
add_filter( 'woocommerce_output_related_products_args', 'business_development_coaching_products_args' );
function business_development_coaching_products_args( $args ) {
$args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 );
$args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 );
return $args;
}
/************************************************************************************/
/**
* Custom logo
*/
function business_development_coaching_custom_css() {
?>
get_control( $setting->id );
if ( array_key_exists( $input, $control->choices ) ) {
return $input;
} else {
return $setting->default;
}
}
/* Excerpt Limit Begin */
function business_development_coaching_string_limit_words($string, $word_limit) {
$words = explode(' ', $string, ($word_limit + 1));
if(count($words) > $word_limit)
array_pop($words);
return implode(' ', $words);
}
define('BUSINESS_DEVELOPMENT_COACHING_FREE_SUPPORT',__('https://wordpress.org/support/theme/business-development-coaching/','business-development-coaching'));
define('BUSINESS_DEVELOPMENT_COACHING_PRO_SUPPORT',__('https://www.revolutionwp.com/support/revolution-wp/','business-development-coaching'));
define('BUSINESS_DEVELOPMENT_COACHING_REVIEW',__('https://wordpress.org/support/theme/business-development-coaching/reviews/#new-post','business-development-coaching'));
define('BUSINESS_DEVELOPMENT_COACHING_BUY_NOW',__('https://www.revolutionwp.com/wp-themes/business-coaching-wordpress-theme/','business-development-coaching'));
define('BUSINESS_DEVELOPMENT_COACHING_LIVE_DEMO',__('https://www.revolutionwp.com/wpdemo/business-development-coaching-pro/','business-development-coaching'));
define('BUSINESS_DEVELOPMENT_COACHING_PRO_DOC',__('https://www.revolutionwp.com/wpdocs/business-development-coaching-pro/','business-development-coaching'));
define('BUSINESS_DEVELOPMENT_COACHING_LITE_DOC',__('https://www.revolutionwp.com/wpdocs/business-development-coaching-free','business-development-coaching'));
//Excerpt
function business_development_coaching_excerpt_function($excerpt_count = 35) {
$excerpt = get_the_excerpt();
$text_excerpt = wp_strip_all_tags($excerpt);
$excerpt_limit = (int) get_theme_mod('business_development_coaching_excerpt_limit', $excerpt_count);
$words = preg_split('/\s+/', $text_excerpt);
$trimmed_words = array_slice($words, 0, $excerpt_limit);
$theme_excerpt = implode(' ', $trimmed_words);
return $theme_excerpt;
}
// Add admin notice
function business_development_coaching_admin_notice() {
global $pagenow;
$theme_args = wp_get_theme();
$meta = get_option( 'business_development_coaching_admin_notice' );
$name = $theme_args->__get( 'Name' );
$current_screen = get_current_screen();
if( !$meta ){
if( is_network_admin() ){
return;
}
if( ! current_user_can( 'manage_options' ) ){
return;
}
if($current_screen->base != 'appearance_page_business_development_coaching_guide' ) { ?>