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' ),
) );
load_theme_textdomain( 'architecture-construction', get_template_directory() . '/languages' );
}
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 );
wp_style_add_data('architecture-construction-style', 'rtl', 'replace');
require get_parent_theme_file_path( '/inc/css_custom.php' );
wp_add_inline_style( 'architecture-construction-style',$architecture_construction_custom_css );
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) {
?>
remove_control('display_header_text');
$wp_customize->remove_setting('display_header_text');
}
add_action('customize_register', 'architecture_construction_remove_customizer_setting');
function architecture_construction_customizer_css() {
$architecture_construction_sidebar_text_align = get_theme_mod('sidebar_text_align', 'left');
?>
'. esc_html( 'Comments are closed.', 'architecture-construction' ).'';
} elseif (is_search()) {
echo ''. esc_html( 'Search Result For.', 'architecture-construction' ).' ' . get_search_query() . '
';
} elseif (is_home() && !is_front_page()) {
echo ''. esc_html( 'Blogs', 'architecture-construction' ).'
';
} elseif (function_exists('is_shop') && is_shop()) {
echo ''. esc_html( 'Shop', 'architecture-construction' ).'
';
} elseif (is_page_template('template-homepage.php')) {
} elseif (is_page()) {
the_title('', '
');
} elseif (is_single()) {
the_title('', '
');
} elseif (is_archive()) {
the_archive_title('', '
');
} else {
the_archive_title('', '
');
}
}
function architecture_construction_body_classess( $classes ) {
// Get the customizer setting value
$hide_post_meta = get_theme_mod( 'architecture_construction_single_post_meta_setting', true );
// Check if the setting is set to hide
if ( !$hide_post_meta ) {
$classes[] = 'hide-post-meta';
}
return $classes;
}
add_filter( 'body_class', 'architecture_construction_body_classess' );
function architecture_construction_hide_single_header_img() {
?>
'',
'Verdana' => '',
'Helvetica' => '',
'Times New Roman'=> '',
'Georgia' => '',
'Courier New' => '',
'Trebuchet MS' => '',
'Tahoma' => '',
'Palatino' => '',
'Garamond' => '',
'Impact' => '',
'Comic Sans MS' => '',
'Lucida Sans' => '',
'Arial Black' => '',
'Gill Sans' => '',
'Segoe UI' => '',
'Open Sans' => 'Open+Sans:wght@400;700',
'Roboto' => 'Roboto:wght@400;700',
'Lato' => 'Lato:wght@400;700',
'Montserrat' => 'Montserrat:wght@400;700',
'Libre Baskerville' => 'Libre+Baskerville:wght@400;700'
);
$architecture_construction_google_fonts_url = '';
if (!empty($google_fonts[$architecture_construction_heading_font_family]) || !empty($google_fonts[$architecture_construction_body_font_family])) {
$fonts = array();
if (!empty($google_fonts[$architecture_construction_heading_font_family])) {
$fonts[] = $google_fonts[$architecture_construction_heading_font_family];
}
if (!empty($google_fonts[$architecture_construction_body_font_family])) {
$fonts[] = $google_fonts[$architecture_construction_body_font_family];
}
// Build Google Fonts URL
$architecture_construction_google_fonts_url = add_query_arg(
'family',
implode('|', $fonts),
'https://fonts.googleapis.com/css2'
);
}
if ($architecture_construction_google_fonts_url) {
wp_enqueue_style('architecture-construction-google-fonts', $architecture_construction_google_fonts_url, false);
}
}
add_action('wp_enqueue_scripts', 'architecture_construction_enqueue_google_fontss');
function architecture_construction_apply_typography() {
// Get the font family settings from the customizer
$architecture_construction_heading_font_family = get_theme_mod('architecture_construction_heading_font_family');
$architecture_construction_body_font_family = get_theme_mod('architecture_construction_body_font_family');
// Only output CSS if one or both fonts are set
if ($architecture_construction_body_font_family || $architecture_construction_heading_font_family) {
?>