get( 'Version' ) );
if( ! defined( 'ARCHITECTURE_CONSTRUCTION_THEME_NAME' ) ) define( 'ARCHITECTURE_CONSTRUCTION_THEME_NAME', $architecture_construction_theme_data->get( 'Name' ) );
if ( ! function_exists( 'architecture_construction_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which
* runs before the init hook. The init hook is too late for some features, such
* as indicating support for post thumbnails.
*/
function architecture_construction_setup() {
// Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded
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' );
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'primary' => esc_html__( 'Primary', 'architecture-construction' ),
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-list',
'gallery',
'caption',
) );
/*
* Enable support for Post Formats.
* See https://developer.wordpress.org/themes/functionality/post-formats/
*/
add_theme_support( 'post-formats', array(
'aside',
'image',
'video',
'quote',
'link',
'gallery',
'status',
'audio',
'chat'
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'architecture_construction_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
/* Custom Logo */
add_theme_support( 'custom-logo', array(
'header-text' => array( 'site-title', 'site-description' ),
) );
}
endif;
add_action( 'after_setup_theme', 'architecture_construction_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 architecture_construction_content_width() {
$GLOBALS['content_width'] = apply_filters( 'architecture_construction_content_width', 780 );
}
add_action( 'after_setup_theme', 'architecture_construction_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function architecture_construction_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Right Sidebar', 'architecture-construction' ),
'id' => 'right-sidebar',
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer One', 'architecture-construction' ),
'id' => 'footer-one',
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Two', 'architecture-construction' ),
'id' => 'footer-two',
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Three', 'architecture-construction' ),
'id' => 'footer-three',
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Footer Four', 'architecture-construction' ),
'id' => 'footer-four',
'description' => '',
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'architecture_construction_widgets_init' );
if( ! function_exists( 'architecture_construction_scripts' ) ) :
/**
* Enqueue scripts and styles.
*/
function architecture_construction_scripts() {
// Use minified libraries if SCRIPT_DEBUG is false
$architecture_construction_build = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '/build' : '';
$architecture_construction_suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
wp_enqueue_style( 'bootstrap-style', get_template_directory_uri().'/css/build/bootstrap.css' );
wp_enqueue_style( 'owl.carousel', get_template_directory_uri() . '/css/build/owl.carousel.css' );
wp_enqueue_style( 'architecture-construction-style', get_stylesheet_uri(), array(), ARCHITECTURE_CONSTRUCTION_THEME_VERSION );
if( architecture_construction_woocommerce_activated() )
wp_enqueue_style( 'architecture-construction-woocommerce-style', get_template_directory_uri(). '/css' . $architecture_construction_build . '/woocommerce' . $architecture_construction_suffix . '.css', array('architecture-construction-style'), ARCHITECTURE_CONSTRUCTION_THEME_VERSION );
wp_enqueue_script( 'all', get_template_directory_uri() . '/js' . $architecture_construction_build . '/all' . $architecture_construction_suffix . '.js', array( 'jquery' ), '6.1.1', true );
wp_enqueue_script( 'v4-shims', get_template_directory_uri() . '/js' . $architecture_construction_build . '/v4-shims' . $architecture_construction_suffix . '.js', array( 'jquery' ), '6.1.1', true );
wp_enqueue_script( 'architecture-construction-modal-accessibility', get_template_directory_uri() . '/js' . $architecture_construction_build . '/modal-accessibility' . $architecture_construction_suffix . '.js', array( 'jquery' ), ARCHITECTURE_CONSTRUCTION_THEME_VERSION, true );
wp_enqueue_script( 'owl.carousel', get_template_directory_uri() . '/js/build/owl.carousel.js', array('jquery'), '2.6.0', true );
wp_enqueue_script( 'architecture-construction-js', get_template_directory_uri() . '/js/build/custom.js', array('jquery'), ARCHITECTURE_CONSTRUCTION_THEME_VERSION, true );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
endif;
add_action( 'wp_enqueue_scripts', 'architecture_construction_scripts' );
if( ! function_exists( 'architecture_construction_admin_scripts' ) ) :
/**
* Addmin scripts
*/
function architecture_construction_admin_scripts() {
wp_enqueue_style( 'architecture-construction-admin-style',get_template_directory_uri().'/inc/css/admin.css', ARCHITECTURE_CONSTRUCTION_THEME_VERSION, 'screen' );
}
endif;
add_action( 'admin_enqueue_scripts', 'architecture_construction_admin_scripts' );
function architecture_construction_customize_enque_js(){
wp_enqueue_script( 'customizer', get_template_directory_uri() . '/inc/js/customizer.js', array('jquery'), '2.6.0', true );
}
add_action( 'customize_controls_enqueue_scripts', 'architecture_construction_customize_enque_js', 0 );
if( ! function_exists( 'architecture_construction_block_editor_styles' ) ) :
/**
* Enqueue editor styles for Gutenberg
*/
function architecture_construction_block_editor_styles() {
// Use minified libraries if SCRIPT_DEBUG is false
$architecture_construction_build = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '/build' : '';
$architecture_construction_suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
// Block styles.
wp_enqueue_style( 'architecture-construction-block-editor-style', get_template_directory_uri() . '/css' . $architecture_construction_build . '/editor-block' . $architecture_construction_suffix . '.css' );
}
endif;
add_action( 'enqueue_block_editor_assets', 'architecture_construction_block_editor_styles' );
/**
* Display the admin notice unless dismissed.
*/
function architecture_construction_dashboard_notice() {
// Check if the notice is dismissed
$dismissed = get_user_meta(get_current_user_id(), 'architecture_construction_dismissable_notice', true);
// Display the notice only if not dismissed
if (!$dismissed) {
?>
manager->get_control( $setting->id )->input_attrs;
// Get min.
$min = ( isset( $atts['min'] ) ? $atts['min'] : $input );
// Get max.
$max = ( isset( $atts['max'] ) ? $atts['max'] : $input );
// Get Step.
$step = ( isset( $atts['step'] ) ? $atts['step'] : 1 );
// If the input is within the valid range, return it; otherwise, return the default.
return ( $min <= $input && $input <= $max && is_int( $input / $step ) ? $input : $setting->default );
}
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extra.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Social Links Widget
*/
require get_template_directory() . '/inc/widget-social-links.php';
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Info Theme
*/
require get_template_directory() . '/inc/info.php';
/**
* Load plugin for right and no sidebar
*/
if( architecture_construction_woocommerce_activated() ) {
require get_template_directory() . '/inc/woocommerce-functions.php';
}
/**
* Getting Started
*/
require get_template_directory() . '/inc/getting-started/getting-started.php';
/**
* Remove header text setting and control from the Customizer.
*/
function architecture_construction_remove_customizer_setting($wp_customize) {
// Replace 'your_setting_id' with the actual ID or name of the setting you want to remove
$wp_customize->remove_control('display_header_text');
$wp_customize->remove_setting('display_header_text');
}
add_action('customize_register', 'architecture_construction_remove_customizer_setting');