'%1$s%2$s', 'logo_class' => 'site-logo site-branding', 'title' => '%2$s', 'title_class' => 'site-title', 'home_wrap' => '

%2$s

', 'single_wrap' => '
%2$s
', 'condition' => (is_front_page() || is_home()) && !is_page(), ); $architect_contractor_args = wp_parse_args($architect_contractor_args, $architect_contractor_defaults); /** * Filters the arguments for `architect_contractor_site_logo()`. * * @param array $architect_contractor_args Parsed arguments. * @param array $architect_contractor_defaults Function's default arguments. */ $architect_contractor_args = apply_filters('architect_contractor_site_logo_args', $architect_contractor_args, $architect_contractor_defaults); $architect_contractor_show_logo = get_theme_mod('architect_contractor_display_logo', false); $architect_contractor_show_title = get_theme_mod('architect_contractor_display_title', true); if ( has_custom_logo() && $architect_contractor_show_logo ) { $architect_contractor_contents .= sprintf($architect_contractor_args['logo'], $architect_contractor_logo, esc_html($architect_contractor_site_title)); $architect_contractor_classname = $architect_contractor_args['logo_class']; } if ( $architect_contractor_show_title ) { $architect_contractor_contents .= sprintf($architect_contractor_args['title'], esc_url(get_home_url(null, '/')), esc_html($architect_contractor_site_title)); // If logo isn't shown, fallback to title class for wrapper. if ( !$architect_contractor_show_logo ) { $architect_contractor_classname = $architect_contractor_args['title_class']; } } // If nothing is shown (logo or title both disabled), exit early if ( empty($architect_contractor_contents) ) { return; } $architect_contractor_wrap = $architect_contractor_args['condition'] ? 'home_wrap' : 'single_wrap'; // $architect_contractor_wrap = 'home_wrap'; $architect_contractor_html = sprintf($architect_contractor_args[$architect_contractor_wrap], $architect_contractor_classname, $architect_contractor_contents); /** * Filters the arguments for `architect_contractor_site_logo()`. * * @param string $architect_contractor_html Compiled html based on our arguments. * @param array $architect_contractor_args Parsed arguments. * @param string $architect_contractor_classname Class name based on current view, home or single. * @param string $architect_contractor_contents HTML for site title or logo. */ $architect_contractor_html = apply_filters('architect_contractor_site_logo', $architect_contractor_html, $architect_contractor_args, $architect_contractor_classname, $architect_contractor_contents); if (!$architect_contractor_echo) { return $architect_contractor_html; } echo $architect_contractor_html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } endif; if( !function_exists('architect_contractor_site_description') ): /** * Displays the site description. * * @param boolean $architect_contractor_echo Echo or return the html. * * @return string $architect_contractor_html The HTML to display. */ function architect_contractor_site_description($architect_contractor_echo = true){ if ( get_theme_mod('architect_contractor_display_header_text', false) == true ) : $architect_contractor_description = get_bloginfo('description'); if (!$architect_contractor_description) { return; } $architect_contractor_wrapper = '
%s
'; $architect_contractor_html = sprintf($architect_contractor_wrapper, esc_html($architect_contractor_description)); /** * Filters the html for the site description. * * @param string $architect_contractor_html The HTML to display. * @param string $architect_contractor_description Site description via `bloginfo()`. * @param string $architect_contractor_wrapper The format used in case you want to reuse it in a `sprintf()`. * @since 1.0.0 * */ $architect_contractor_html = apply_filters('architect_contractor_site_description', $architect_contractor_html, $architect_contractor_description, $architect_contractor_wrapper); if (!$architect_contractor_echo) { return $architect_contractor_html; } echo $architect_contractor_html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped endif; } endif; if( !function_exists('architect_contractor_posted_on') ): /** * Prints HTML with meta information for the current post-date/time. */ function architect_contractor_posted_on( $architect_contractor_icon = true, $architect_contractor_animation_class = '' ){ $architect_contractor_default = architect_contractor_get_default_theme_options(); $architect_contractor_post_date = absint( get_theme_mod( 'architect_contractor_post_date',$architect_contractor_default['architect_contractor_post_date'] ) ); if( $architect_contractor_post_date ){ $architect_contractor_time_string = ''; if (get_the_time('U') !== get_the_modified_time('U')) { $architect_contractor_time_string = ''; } $architect_contractor_time_string = sprintf($architect_contractor_time_string, esc_attr(get_the_date(DATE_W3C)), esc_html(get_the_date()), esc_attr(get_the_modified_date(DATE_W3C)), esc_html(get_the_modified_date()) ); $architect_contractor_year = get_the_date('Y'); $architect_contractor_month = get_the_date('m'); $architect_contractor_day = get_the_date('d'); $link = get_day_link($architect_contractor_year, $architect_contractor_month, $architect_contractor_day); $architect_contractor_posted_on = '' . $architect_contractor_time_string . ''; echo '
'; echo '
'; if( $architect_contractor_icon ){ echo ''; } echo '' . $architect_contractor_posted_on . ''; // phpcs:ignore Standard.Category.SniffName.ErrorCode echo '
'; echo '
'; } } endif; if( !function_exists('architect_contractor_posted_by') ) : /** * Prints HTML with meta information for the current author. */ function architect_contractor_posted_by( $architect_contractor_icon = true, $architect_contractor_animation_class = '' ){ $architect_contractor_default = architect_contractor_get_default_theme_options(); $architect_contractor_post_author = absint( get_theme_mod( 'architect_contractor_post_author',$architect_contractor_default['architect_contractor_post_author'] ) ); if( $architect_contractor_post_author ){ echo '
'; echo '
'; if( $architect_contractor_icon ){ echo ''; } $architect_contractor_byline = '' . esc_html(get_the_author()) . ''; echo ''; // phpcs:ignore Standard.Category.SniffName.ErrorCode echo '
'; echo '
'; } } endif; if( !function_exists('architect_contractor_posted_by_avatar') ) : /** * Prints HTML with meta information for the current author. */ function architect_contractor_posted_by_avatar( $architect_contractor_date = false ){ $architect_contractor_default = architect_contractor_get_default_theme_options(); $architect_contractor_post_author = absint( get_theme_mod( 'architect_contractor_post_author',$architect_contractor_default['architect_contractor_post_author'] ) ); if( $architect_contractor_post_author ){ echo '
'; echo '
'; echo wp_kses_post( get_avatar( get_the_author_meta( 'ID' ) ) ); echo '
'; echo '
'; echo '
'; $architect_contractor_byline = '' . esc_html(get_the_author()) . ''; echo '
' . $architect_contractor_byline . '
'; if( $architect_contractor_date ){ architect_contractor_posted_on($architect_contractor_icon = false); } echo '
'; } } endif; if( !function_exists('architect_contractor_entry_footer') ): /** * Prints HTML with meta information for the categories, tags and comments. */ function architect_contractor_entry_footer( $architect_contractor_cats = true, $architect_contractor_tags = true, $architect_contractor_edits = true){ $architect_contractor_default = architect_contractor_get_default_theme_options(); $architect_contractor_post_category = absint( get_theme_mod( 'architect_contractor_post_category',$architect_contractor_default['architect_contractor_post_category'] ) ); $architect_contractor_post_tags = absint( get_theme_mod( 'architect_contractor_post_tags',$architect_contractor_default['architect_contractor_post_tags'] ) ); // Hide category and tag text for pages. if ('post' === get_post_type()) { if( $architect_contractor_cats && $architect_contractor_post_category ){ /* translators: used between list items, there is a space after the comma */ $architect_contractor_categories = get_the_category(); if ($architect_contractor_categories) { echo '
'; echo '
'; /* translators: 1: list of categories. */ echo ''; foreach( $architect_contractor_categories as $architect_contractor_category ){ $architect_contractor_cat_name = $architect_contractor_category->name; $architect_contractor_cat_slug = $architect_contractor_category->slug; $architect_contractor_cat_url = get_category_link( $architect_contractor_category->term_id ); ?> '; // phpcs:ignore Standard.Category.SniffName.ErrorCode echo '
'; echo '
'; } } if( $architect_contractor_tags && $architect_contractor_post_tags ){ /* translators: used between list items, there is a space after the comma */ $architect_contractor_tags_list = get_the_tag_list('', esc_html_x(', ', 'list item separator', 'architect-contractor')); if( $architect_contractor_tags_list ){ echo '
'; echo '
'; /* translators: 1: list of tags. */ echo ''; echo wp_kses_post($architect_contractor_tags_list) . ''; // phpcs:ignore Standard.Category.SniffName.ErrorCode echo '
'; echo '
'; } } if( $architect_contractor_edits ){ edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __('Edit %s', 'architect-contractor'), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } } } endif; if ( ! function_exists( 'architect_contractor_post_thumbnail' ) ) : /** * Displays an optional post thumbnail. * * Shows background style image with height class on archive/search/front, * and a normal inline image on single post/page views. */ function architect_contractor_post_thumbnail( $architect_contractor_image_size = 'medium' ) { if ( post_password_required() || is_attachment() ) { return; } // Fallback image path $architect_contractor_default_image = get_template_directory_uri() . '/inc/homepage-setup/assets/homepage-setup-images/post-img1.png'; // Image size → height class map $architect_contractor_size_class_map = array( 'full' => 'data-bg-large', 'large' => 'data-bg-big', 'medium' => 'data-bg-medium', 'small' => 'data-bg-small', 'xsmall' => 'data-bg-xsmall', 'thumbnail' => 'data-bg-thumbnail', ); $architect_contractor_class = isset( $architect_contractor_size_class_map[ $architect_contractor_image_size ] ) ? $architect_contractor_size_class_map[ $architect_contractor_image_size ] : 'data-bg-medium'; if ( is_singular() ) { the_post_thumbnail(); } else { // 🔵 On archives → use background image style $architect_contractor_image = has_post_thumbnail() ? wp_get_attachment_image_src( get_post_thumbnail_id(), $architect_contractor_image_size ) : array( $architect_contractor_default_image ); $architect_contractor_bg_image = isset( $architect_contractor_image[0] ) ? $architect_contractor_image[0] : $architect_contractor_default_image; ?>
user_id > 0) { $architect_contractor_user = get_userdata($architect_contractor_comment->user_id); $post = get_post($architect_contractor_comment->comment_post_ID); if (!empty($architect_contractor_user) && !empty($post)) { return $architect_contractor_comment->user_id === $post->post_author; } } return false; } endif; if( !function_exists('architect_contractor_breadcrumb') ) : /** * Architect Contractor Breadcrumb */ function architect_contractor_breadcrumb($architect_contractor_comment = null){ echo '
'; architect_contractor_breadcrumb_trail(); echo '
'; } endif;