',
'condition' => (is_front_page() || is_home()) && !is_page(),
);
$aviation_industry_args = wp_parse_args($aviation_industry_args, $aviation_industry_defaults);
/**
* Filters the arguments for `aviation_industry_site_logo()`.
*
* @param array $aviation_industry_args Parsed arguments.
* @param array $aviation_industry_defaults Function's default arguments.
*/
$aviation_industry_args = apply_filters('aviation_industry_site_logo_args', $aviation_industry_args, $aviation_industry_defaults);
$aviation_industry_show_logo = get_theme_mod('aviation_industry_display_logo', false);
$aviation_industry_show_title = get_theme_mod('aviation_industry_display_title', true);
if ( has_custom_logo() && $aviation_industry_show_logo ) {
$aviation_industry_contents .= sprintf($aviation_industry_args['logo'], $aviation_industry_logo, esc_html($aviation_industry_site_title));
$aviation_industry_classname = $aviation_industry_args['logo_class'];
}
if ( $aviation_industry_show_title ) {
$aviation_industry_contents .= sprintf($aviation_industry_args['title'], esc_url(get_home_url(null, '/')), esc_html($aviation_industry_site_title));
// If logo isn't shown, fallback to title class for wrapper.
if ( !$aviation_industry_show_logo ) {
$aviation_industry_classname = $aviation_industry_args['title_class'];
}
}
// If nothing is shown (logo or title both disabled), exit early
if ( empty($aviation_industry_contents) ) {
return;
}
$aviation_industry_wrap = $aviation_industry_args['condition'] ? 'home_wrap' : 'single_wrap';
// $aviation_industry_wrap = 'home_wrap';
$aviation_industry_html = sprintf($aviation_industry_args[$aviation_industry_wrap], $aviation_industry_classname, $aviation_industry_contents);
/**
* Filters the arguments for `aviation_industry_site_logo()`.
*
* @param string $aviation_industry_html Compiled html based on our arguments.
* @param array $aviation_industry_args Parsed arguments.
* @param string $aviation_industry_classname Class name based on current view, home or single.
* @param string $aviation_industry_contents HTML for site title or logo.
*/
$aviation_industry_html = apply_filters('aviation_industry_site_logo', $aviation_industry_html, $aviation_industry_args, $aviation_industry_classname, $aviation_industry_contents);
if (!$aviation_industry_echo) {
return $aviation_industry_html;
}
echo $aviation_industry_html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
endif;
if( !function_exists('aviation_industry_site_description') ):
/**
* Displays the site description.
*
* @param boolean $aviation_industry_echo Echo or return the html.
*
* @return string $aviation_industry_html The HTML to display.
*/
function aviation_industry_site_description($aviation_industry_echo = true){
if ( get_theme_mod('aviation_industry_display_header_text', false) == true ) :
$aviation_industry_description = get_bloginfo('description');
if (!$aviation_industry_description) {
return;
}
$aviation_industry_wrapper = '
%s
';
$aviation_industry_html = sprintf($aviation_industry_wrapper, esc_html($aviation_industry_description));
/**
* Filters the html for the site description.
*
* @param string $aviation_industry_html The HTML to display.
* @param string $aviation_industry_description Site description via `bloginfo()`.
* @param string $aviation_industry_wrapper The format used in case you want to reuse it in a `sprintf()`.
* @since 1.0.0
*
*/
$aviation_industry_html = apply_filters('aviation_industry_site_description', $aviation_industry_html, $aviation_industry_description, $aviation_industry_wrapper);
if (!$aviation_industry_echo) {
return $aviation_industry_html;
}
echo $aviation_industry_html; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
endif;
}
endif;
if( !function_exists('aviation_industry_posted_on') ):
/**
* Prints HTML with meta information for the current post-date/time.
*/
function aviation_industry_posted_on( $aviation_industry_icon = true, $aviation_industry_animation_class = '' ){
$aviation_industry_default = aviation_industry_get_default_theme_options();
$aviation_industry_post_date = absint( get_theme_mod( 'aviation_industry_post_date',$aviation_industry_default['aviation_industry_post_date'] ) );
if( $aviation_industry_post_date ){
$aviation_industry_time_string = '';
if (get_the_time('U') !== get_the_modified_time('U')) {
$aviation_industry_time_string = '';
}
$aviation_industry_time_string = sprintf($aviation_industry_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())
);
$aviation_industry_year = get_the_date('Y');
$aviation_industry_month = get_the_date('m');
$aviation_industry_day = get_the_date('d');
$aviation_industry_link = get_day_link($aviation_industry_year, $aviation_industry_month, $aviation_industry_day);
$aviation_industry_posted_on = '' . $aviation_industry_time_string . '';
echo '
';
}
}
endif;
if( !function_exists('aviation_industry_posted_by') ) :
/**
* Prints HTML with meta information for the current author.
*/
function aviation_industry_posted_by( $aviation_industry_icon = true, $aviation_industry_animation_class = '' ){
$aviation_industry_default = aviation_industry_get_default_theme_options();
$aviation_industry_post_author = absint( get_theme_mod( 'aviation_industry_post_author',$aviation_industry_default['aviation_industry_post_author'] ) );
if( $aviation_industry_post_author ){
echo '
';
}
}
endif;
if( !function_exists('aviation_industry_posted_by_avatar') ) :
/**
* Prints HTML with meta information for the current author.
*/
function aviation_industry_posted_by_avatar( $aviation_industry_date = false ){
$aviation_industry_default = aviation_industry_get_default_theme_options();
$aviation_industry_post_author = absint( get_theme_mod( 'aviation_industry_post_author',$aviation_industry_default['aviation_industry_post_author'] ) );
if( $aviation_industry_post_author ){
echo '
';
}
}
endif;
if( !function_exists('aviation_industry_entry_footer') ):
/**
* Prints HTML with meta information for the categories, tags and comments.
*/
function aviation_industry_entry_footer( $aviation_industry_cats = true, $aviation_industry_tags = true, $aviation_industry_edits = true){
$aviation_industry_default = aviation_industry_get_default_theme_options();
$aviation_industry_post_category = absint( get_theme_mod( 'aviation_industry_post_category',$aviation_industry_default['aviation_industry_post_category'] ) );
$aviation_industry_post_tags = absint( get_theme_mod( 'aviation_industry_post_tags',$aviation_industry_default['aviation_industry_post_tags'] ) );
// Hide category and tag text for pages.
if ('post' === get_post_type()) {
if( $aviation_industry_cats && $aviation_industry_post_category ){
/* translators: used between list items, there is a space after the comma */
$aviation_industry_categories = get_the_category();
if ($aviation_industry_categories) {
echo '
';
echo '
';
/* translators: 1: list of categories. */
echo '';
foreach( $aviation_industry_categories as $aviation_industry_category ){
$aviation_industry_cat_name = $aviation_industry_category->name;
$aviation_industry_cat_slug = $aviation_industry_category->slug;
$aviation_industry_cat_url = get_category_link( $aviation_industry_category->term_id );
?>
'; // WPCS: XSS OK.
echo '
';
echo '
';
}
}
if( $aviation_industry_tags && $aviation_industry_post_tags ){
/* translators: used between list items, there is a space after the comma */
$aviation_industry_tags_list = get_the_tag_list('', esc_html_x(', ', 'list item separator', 'aviation-industry'));
if( $aviation_industry_tags_list ){
echo '
';
echo '
';
/* translators: 1: list of tags. */
echo '';
echo wp_kses_post($aviation_industry_tags_list) . ''; // WPCS: XSS OK.
echo '
';
echo '
';
}
}
if( $aviation_industry_edits ){
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__('Edit %s', 'aviation-industry'),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'',
''
);
}
}
}
endif;
if ( ! function_exists( 'aviation_industry_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 aviation_industry_post_thumbnail( $aviation_industry_image_size = 'full' ) {
if ( post_password_required() || is_attachment() ) {
return;
}
// Fallback image path
$aviation_industry_default_image = get_template_directory_uri() . '/assets/images/service-img.png';
// Image size → height class map
$aviation_industry_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',
);
$aviation_industry_class = isset( $aviation_industry_size_class_map[ $aviation_industry_image_size ] )
? $aviation_industry_size_class_map[ $aviation_industry_image_size ]
: 'data-bg-medium';
if ( is_singular() ) {
the_post_thumbnail();
} else {
// 🔵 On archives → use background image style
$aviation_industry_image = has_post_thumbnail()
? wp_get_attachment_image_src( get_post_thumbnail_id(), $aviation_industry_image_size )
: array( $aviation_industry_default_image );
$aviation_industry_bg_image = isset( $aviation_industry_image[0] ) ? $aviation_industry_image[0] : $aviation_industry_default_image;
?>