false,
'header-text' => false,
) );
add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 100,
'flex-height' => true,
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'building-contractor' ),
) );
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' );
global $pagenow;
if ( is_admin() && 'themes.php' === $pagenow && isset( $_GET['activated'] ) && current_user_can( 'manage_options' ) ) {
add_action('admin_notices', 'building_contractor_deprecated_hook_admin_notice');
}
}
endif; // building_contractor_setup
add_action( 'after_setup_theme', 'building_contractor_setup' );
function building_contractor_the_breadcrumb() {
echo '
';
if (!is_home()) {
echo '
';
bloginfo('name');
echo "";
if (is_category() || is_single()) {
the_category(' , ');
if (is_single()) {
echo '
' . esc_html(get_the_title()) . '';
}
} elseif (is_page()) {
echo '
' . esc_html(get_the_title()) . '';
}
}
echo '
';
}
function building_contractor_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'building-contractor' ),
'description' => __( 'Appears on blog page sidebar', 'building-contractor' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Page Sidebar', 'building-contractor' ),
'id' => 'sidebar-2',
'description' => __( 'Add widgets here to appear in your sidebar on pages.', 'building-contractor' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Sidebar 3', 'building-contractor' ),
'id' => 'sidebar-3',
'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'building-contractor' ),
'before_widget' => '',
'before_title' => '',
) );
$building_contractor_widget_areas = get_theme_mod('building_contractor_footer_widget_areas', '4');
for ($building_contractor_i=1; $building_contractor_i <= 4; $building_contractor_i++) {
register_sidebar( array(
'name' => __( 'Footer Widget ', 'building-contractor' ) . $building_contractor_i,
'id' => 'footer-' . $building_contractor_i,
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
}
register_sidebar(array(
'name' => __('Shop Sidebar', 'building-contractor'),
'description' => __('Sidebar for WooCommerce shop pages', 'building-contractor'),
'id' => 'woocommerce_sidebar',
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Single Product Sidebar', 'building-contractor'),
'description' => __('Sidebar for single product pages', 'building-contractor'),
'id' => 'woocommerce-single-sidebar',
'before_widget' => '',
'before_title' => '',
));
}
add_action( 'widgets_init', 'building_contractor_widgets_init' );
// Change number of products per row to 3
add_filter('loop_shop_columns', 'building_contractor_loop_columns');
if (!function_exists('building_contractor_loop_columns')) {
function building_contractor_loop_columns() {
$colm = get_theme_mod('building_contractor_products_per_row', 3); // Default to 3 if not set
return $colm;
}
}
// Use the customizer setting to set the number of products per page
function building_contractor_products_per_page($cols) {
$cols = get_theme_mod('building_contractor_products_per_page', 9); // Default to 9 if not set
return $cols;
}
add_filter('loop_shop_per_page', 'building_contractor_products_per_page', 9);
function building_contractor_scripts() {
wp_enqueue_style( 'bootstrap-css', esc_url(get_template_directory_uri())."/css/bootstrap.css" );
wp_enqueue_style('building-contractor-style', get_stylesheet_uri(), array() );
wp_style_add_data('building-contractor-style', 'rtl', 'replace');
require get_parent_theme_file_path( '/inc/color-scheme/custom-color-control.php' );
wp_add_inline_style( 'building-contractor-style',$building_contractor_color_scheme_css );
wp_enqueue_style( 'owl.carousel-css', esc_url(get_template_directory_uri())."/css/owl.carousel.css" );
wp_enqueue_style( 'building-contractor-default', esc_url(get_template_directory_uri())."/css/default.css" );
wp_enqueue_style( 'building-contractor-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( 'building-contractor-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( 'building-contractor-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
$building_contractor_headings_font = esc_html(get_theme_mod('building_contractor_headings_fonts'));
$building_contractor_body_font = esc_html(get_theme_mod('building_contractor_body_fonts'));
if ($building_contractor_headings_font) {
wp_enqueue_style('building-contractor-headings-fonts', 'https://fonts.googleapis.com/css?family=' . urlencode($building_contractor_headings_font));
} else {
wp_enqueue_style('montserrat-headings', 'https://fonts.googleapis.com/css?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900');
}
if ($building_contractor_body_font) {
wp_enqueue_style('building-contractor-body-fonts', 'https://fonts.googleapis.com/css?family=' . urlencode($building_contractor_body_font));
} else {
wp_enqueue_style('montserrat-body', 'https://fonts.googleapis.com/css?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900');
}
}
add_action( 'wp_enqueue_scripts', 'building_contractor_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';
/**
* Google Fonts
*/
require get_template_directory() . '/inc/gfonts.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';
/**
* select .
*/
require get_template_directory() . '/inc/select/category-dropdown-custom-control.php';
/**
* Theme Info Page.
*/
require get_template_directory() . '/inc/addon.php';
/**
* Load TGM.
*/
require get_template_directory() . '/inc/tgm/tgm.php';
function building_contractor_setup_theme() {
if ( ! defined( 'BUILDING_CONTRACTOR_PRO_NAME' ) ) {
define( 'BUILDING_CONTRACTOR_PRO_NAME', __( 'About Building Contractor', 'building-contractor' ));
}
if ( ! defined( 'BUILDING_CONTRACTOR_THEME_PAGE' ) ) {
define('BUILDING_CONTRACTOR_THEME_PAGE',__('https://www.theclassictemplates.com/collections/best-wordpress-templates','building-contractor'));
}
if ( ! defined( 'BUILDING_CONTRACTOR_SUPPORT' ) ) {
define('BUILDING_CONTRACTOR_SUPPORT',__('https://wordpress.org/support/theme/building-contractor/','building-contractor'));
}
if ( ! defined( 'BUILDING_CONTRACTOR_REVIEW' ) ) {
define('BUILDING_CONTRACTOR_REVIEW',__('https://wordpress.org/support/theme/building-contractor/reviews/','building-contractor'));
}
if ( ! defined( 'BUILDING_CONTRACTOR_PRO_DEMO' ) ) {
define('BUILDING_CONTRACTOR_PRO_DEMO',__('https://live.theclassictemplates.com/building-contractor-shop-pro/','building-contractor'));
}
if ( ! defined( 'BUILDING_CONTRACTOR_PREMIUM_PAGE' ) ) {
define('BUILDING_CONTRACTOR_PREMIUM_PAGE',__('https://www.theclassictemplates.com/products/building-contractor-wordpress-theme','building-contractor'));
}
if ( ! defined( 'BUILDING_CONTRACTOR_THEME_DOCUMENTATION' ) ) {
define('BUILDING_CONTRACTOR_THEME_DOCUMENTATION',__('https://live.theclassictemplates.com/demo/docs/building-contractor-shop-free','building-contractor'));
}
}
add_action( 'after_setup_theme', 'building_contractor_setup_theme' );
/* Starter Content */
add_theme_support( 'starter-content', array(
'widgets' => array(
'footer-1' => array(
'categories',
),
'footer-2' => array(
'archives',
),
'footer-3' => array(
'meta',
),
'footer-4' => array(
'search',
),
),
));
if ( ! function_exists( 'building_contractor_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
*/
function building_contractor_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
/*-- Custom metafield --*/
function building_contractor_custom_price() {
add_meta_box( 'bn_meta', __( 'Building Contractor Meta Fields', 'building-contractor' ), 'building_contractor_render_custom_icon_meta_field', 'post', 'normal', 'high' );
}
if (is_admin()){
add_action('admin_menu', 'building_contractor_custom_price');
}
function building_contractor_render_custom_icon_meta_field($post) {
wp_nonce_field(basename(__FILE__), 'building_contractor_custom_icon_meta_nonce');
$custom_icon_value = get_post_meta($post->ID, 'building_contractor_custom_icon', true);
?>
get( 'Name' )), esc_html($building_contractor_theme->get( 'Version' ))); ?>