<?php

/**
 * Template tags used throught the theme.
 *
 * @package     Bloghash
 * @author      Peregrine Themes
 * @since       1.0.0
 */

/**
 * Do not allow direct script access.
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! function_exists( 'bloghash_get_schema_markup' ) ) :
	/**
	 * Return correct schema markup.
	 *
	 * @since 1.0.0
	 * @param string $location Location for schema parameters.
	 */
	function bloghash_get_schema_markup( $location = '' ) {

		// Check if schema is enabled.
		if ( ! bloghash_is_schema_enabled() ) {
			return;
		}

		// Return if no location parameter is passed.
		if ( ! $location ) {
			return;
		}

		$schema = '';

		if ( 'url' === $location ) {
			$schema = 'itemprop="url"';
		} elseif ( 'name' === $location ) {
			$schema = 'itemprop="name"';
		} elseif ( 'text' === $location ) {
			$schema = 'itemprop="text"';
		} elseif ( 'headline' === $location ) {
			$schema = 'itemprop="headline"';
		} elseif ( 'image' === $location ) {
			$schema = 'itemprop="image"';
		} elseif ( 'header' === $location ) {
			$schema = 'itemtype="https://schema.org/WPHeader" itemscope="itemscope"';
		} elseif ( 'site_navigation' === $location ) {
			$schema = 'itemtype="https://schema.org/SiteNavigationElement" itemscope="itemscope"';
		} elseif ( 'logo' === $location ) {
			$schema = 'itemprop="logo"';
		} elseif ( 'description' === $location ) {
			$schema = 'itemprop="description"';
		} elseif ( 'organization' === $location ) {
			$schema = 'itemtype="https://schema.org/Organization" itemscope="itemscope" ';
		} elseif ( 'footer' === $location ) {
			$schema = 'itemtype="http://schema.org/WPFooter" itemscope="itemscope"';
		} elseif ( 'sidebar' === $location ) {
			$schema = 'itemtype="http://schema.org/WPSideBar" itemscope="itemscope"';
		} elseif ( 'main' === $location ) {
			$schema = 'itemtype="http://schema.org/WebPageElement" itemprop="mainContentOfPage"';

			if ( is_singular( 'post' ) ) {
				$schema = 'itemscope itemtype="http://schema.org/Blog"';
			}
		} elseif ( 'author' === $location ) {
			$schema = 'itemprop="author" itemscope="itemscope" itemtype="http://schema.org/Person"';
		} elseif ( 'name' === $location ) {
			$schema = 'itemprop="name"';
		} elseif ( 'datePublished' === $location ) {
			$schema = 'itemprop="datePublished"';
		} elseif ( 'dateModified' === $location ) {
			$schema = 'itemprop="dateModified"';
		} elseif ( 'article' === $location ) {
			$schema = 'itemscope="" itemtype="https://schema.org/CreativeWork"';
		} elseif ( 'comment' === $location ) {
			$schema = 'itemprop="comment" itemscope="" itemtype="https://schema.org/Comment"';
		} elseif ( 'html' === $location ) {
			if ( is_singular() ) {
				$schema = 'itemscope itemtype="http://schema.org/WebPage"';
			} else {
				$schema = 'itemscope itemtype="http://schema.org/Article"';
			}
		}

		$schema = ' ' . trim( apply_filters( 'bloghash_schema_markup', $schema, $location ) );

		return $schema;
	}
endif;

if ( ! function_exists( 'bloghash_schema_markup' ) ) :
	/**
	 * Outputs correct schema markup
	 *
	 * @since 1.0.0
	 * @param string $location Location for schema parameters.
	 */
	function bloghash_schema_markup( $location ) {
		echo bloghash_get_schema_markup( $location ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
endif;

if ( ! function_exists( 'bloghash_logo' ) ) :
	/**
	 * Outputs theme logo markup.
	 *
	 * @since 1.0.0
	 * @param boolean|string $echo - Print the logo or return as string.
	 */
	function bloghash_logo( $echo = true ) {

		$display_site_description = bloghash_option( 'display_tagline' );
		$site_title               = bloghash_get_site_title();
		$site_url                 = bloghash_get_site_url();

		$site_logo_output		 = '';
		$site_title_output       = '';
		$site_description_output = '';

		// Check if a custom logo image has been uploaded.
		if ( bloghash_has_logo() ) {

			$default_logo = bloghash_option( 'custom_logo', '' );

			$retina_logo = bloghash_option( 'logo_default_retina' );
			$retina_logo = isset( $retina_logo['background-image-id'] ) ? $retina_logo['background-image-id'] : false;

			$site_logo_output = bloghash_get_logo_img_output( $default_logo, $retina_logo );

			// Allow logo output to be filtered.
			$site_logo_output = apply_filters( 'bloghash_logo_img_output', $site_logo_output );
		}

		// Set tag to H1 for home page, span for other pages.
		$site_title_tag = is_home() || is_front_page() ? 'h1' : 'span';
		$site_title_tag = apply_filters( 'bloghash_site_title_tag', $site_title_tag );

		$class = $site_logo_output ? ' screen-reader-text' : '';
		// Site Title HTML markup.
		$site_title_output = apply_filters(
			'bloghash_site_title_markup',
			sprintf(
				'<%1$s class="site-title%6$s"%4$s>
					<a href="%2$s" rel="home"%5$s>
						%3$s
					</a>
				</%1$s>',
				tag_escape( $site_title_tag ),
				esc_url( $site_url ),
				esc_html( $site_title ),
				bloghash_get_schema_markup( 'name' ),
				bloghash_get_schema_markup( 'url' ),
				esc_attr($class)
			)
		);

		// Output site description if enabled in Customizer.
		$class = !$display_site_description ? ' screen-reader-text' : '';
		if( bloghash_get_site_description() ) {
			$site_description_output = apply_filters(
				'bloghash_site_description_markup',
				sprintf(
					'<p class="site-description%3$s"%2$s>
						%1$s
					</p>',
					esc_html( bloghash_get_site_description() ),
					bloghash_get_schema_markup( 'description' ),
					esc_attr($class)
				)
			);
		}
		

		$output = '<div class="logo-inner">' . $site_logo_output . $site_title_output . $site_description_output . '</div>';

		// Allow output to be filtered.
		$output = apply_filters( 'bloghash_logo_output', $output );

		// Echo or return the output.
		if ( $echo ) {
			echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		} else {
			return $output;
		}
	}
endif;

if ( ! function_exists( 'bloghash_get_logo_img_output' ) ) :
	/**
	 * Outputs logo image markup.
	 *
	 * @param int    $logo Attachment ID of the logo image.
	 * @param int    $retina Attachment ID of the retina logo image.
	 * @param string $class Additional CSS class.
	 * @since 1.0.0
	 */
	function bloghash_get_logo_img_output( $logo, $retina = '', $class = '' ) {

		$output = '';

		// Logo attributes.
		$logo_attr = array(
			'url'    => '',
			'width'  => '',
			'height' => '',
			'class'  => '',
			'alt'    => '',
		);

		// Check if a custom logo has been uploaded.
		if ( $logo ) {

			// Get default logo src, width & height.
			$default_logo_attachment_src = wp_get_attachment_image_src( $logo, 'full' );

			if ( $default_logo_attachment_src ) {
				$logo_attr['url']    = $default_logo_attachment_src[0];
				$logo_attr['width']  = $default_logo_attachment_src[1];
				$logo_attr['height'] = $default_logo_attachment_src[2];
			}

			// Check if uploaded logo is SVG.
			$mimes          = array();
			$mimes['svg']   = 'image/svg+xml';
			$file_type      = wp_check_filetype( $logo_attr['url'], $mimes );
			$file_extension = $file_type['ext'];

			if ( 'svg' === $file_extension ) {
				$logo_attr['width']  = '100%';
				$logo_attr['height'] = '100%';
				$logo_attr['class']  = 'bloghash-svg-logo';
			}

			// Get default logo alt.
			$default_logo_alt = get_post_meta( $logo, '_wp_attachment_image_alt', true );
			$logo_attr['alt'] = $default_logo_alt ? $default_logo_alt : bloghash_get_site_title();

			// Build srcset attribute.
			$srcset = '';

			if ( $retina ) {
				$retina_logo_image = wp_get_attachment_image_url( $retina, 'full' );

				if ( $retina_logo_image ) {
					$srcset = ' srcset="' . esc_attr( $logo_attr['url'] ) . ' 1x, ' . esc_attr( $retina_logo_image ) . ' 2x"';
				}
			}

			// Build logo output.
			$output = sprintf(
				'<a href="%1$s" rel="home" class="%2$s"%3$s>
					<img src="%4$s" alt="%5$s" width="%6$s" height="%7$s" class="%8$s"%9$s%10$s/>
				</a>',
				esc_url( bloghash_get_site_url() ),
				esc_attr( trim( $class ) ),
				bloghash_get_schema_markup( 'url' ),
				esc_url( $logo_attr['url'] ),
				esc_attr( $logo_attr['alt'] ),
				esc_attr( $logo_attr['width'] ),
				esc_attr( $logo_attr['height'] ),
				esc_attr( $logo_attr['class'] ),
				$srcset,
				bloghash_get_schema_markup( 'logo' )
			);
		}

		return $output;
	}
endif;

if ( ! function_exists( 'bloghash_edit_post_link' ) ) :

	/**
	 * Function to get Edit Post Link
	 *
	 * @since 1.0.0
	 *
	 * @param string      $text   Optional. Anchor text. If null, default is 'Edit This'. Default null.
	 * @param string      $before Optional. Display before edit link. Default empty.
	 * @param string      $after  Optional. Display after edit link. Default empty.
	 * @param int|WP_Post $id     Optional. Post ID or post object. Default is the global `$post`.
	 * @param string      $class  Optional. Add custom class to link. Default 'post-edit-link'.
	 */
	function bloghash_edit_post_link( $text, $before = '', $after = '', $id = 0, $class = 'post-edit-link' ) {

		if ( apply_filters( 'bloghash_edit_post_link', true ) && get_edit_post_link() ) {

			edit_post_link( $text, $before, $after, $id, $class );
		}
	}
endif;

if ( ! function_exists( 'bloghash_page_header_title' ) ) :
	/**
	 * Output the Page Header title tag.
	 *
	 * @since 1.0.0
	 * @param boolean $echo Display or return the title.
	 */
	function bloghash_page_header_title( $echo = true ) {

		$title = apply_filters( 'bloghash_page_header_title', bloghash_get_the_title() );
		$tag   = apply_filters( 'bloghash_page_header_title_tag', 'h1' );
		$class = array( 'page-title' );
		$class = apply_filters( 'bloghash_page_header_title_class', $class );

		if ( ! empty( $class ) ) {
			$class = ' class="' . esc_attr( trim( implode( ' ', $class ) ) ) . '"';
		} else {
			$class = '';
		}

		$before = '<' . tag_escape( $tag ) . $class . bloghash_get_schema_markup( 'headline' ) . '>';
		$after  = '</' . tag_escape( $tag ) . '>';
		$title  = $before . wp_kses( $title, bloghash_get_allowed_html_tags() ) . $after;

		if ( $echo ) {
			echo $title; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		} else {
			return $title;
		}
	}
endif;

if ( ! function_exists( 'bloghash_hamburger' ) ) :
	/**
	 * Output the hamburger button.
	 *
	 * @since 1.0.0
	 *
	 * @param  string $button_title Menu title.
	 * @param  string $menu_id Menu ID.
	 */
	function bloghash_hamburger( $button_title, $menu_id ) {

		$classes = array( 'bloghash-hamburger', 'hamburger--spin', 'bloghash-hamburger-' . esc_attr( $menu_id ) );
		$classes = apply_filters( 'bloghash_hamburger_menu_classes', $classes );
		$classes = trim( implode( ' ', $classes ) );

		?>
		<button class="<?php echo esc_attr( $classes ); ?>" aria-label="<?php esc_attr_e( 'Menu', 'bloghash' ); ?>" aria-controls="<?php echo esc_attr( $menu_id ); ?>" type="button">

			<?php if ( $button_title || is_customize_preview() ) { ?>
				<span class="hamburger-label uppercase-text"><?php echo wp_kses( $button_title, bloghash_get_allowed_html_tags( 'button' ) ); ?></span>
			<?php } ?>

			<span class="hamburger-box">
				<span class="hamburger-inner"></span>
			</span>

		</button>
		<?php
	}
endif;

if ( ! function_exists( 'bloghash_pagination' ) ) :
	/**
	 * Output the pagination navigation.
	 *
	 * @since 1.0.0
	 */
	function bloghash_pagination() {

		// Don't print empty markup if there's only one page.
		if ( $GLOBALS['wp_query']->max_num_pages <= 1 ) {
			return;
		}

		?>

		<div class="bloghash-pagination bloghash-default">
		
		<?php
			// Standard pagination.
			the_posts_pagination(
				array(
					'mid_size'  => 2,
					'prev_text' => sprintf( '<span class="screen-reader-text">%s</span>', esc_html__( 'Previous page', 'bloghash' ) ) . bloghash_animated_arrow( 'left', 'button', false ),
					'next_text' => sprintf( '<span class="screen-reader-text">%s</span>', esc_html__( 'Next page', 'bloghash' ) ) . bloghash_animated_arrow( 'right', 'button', false ),
				)
			);
		?>
		</div>
	
		<?php
	}
endif;

if ( ! function_exists( 'bloghash_link_pages' ) ) :
	/**
	 * Output the wp_link_pages.
	 *
	 * @since 1.0.0
	 */
	function bloghash_link_pages() {

		wp_link_pages(
			array(
				'before'      => '<div class="page-links"><em>' . esc_html__( 'Pages', 'bloghash' ) . '</em>',
				'after'       => '</div>',
				'link_before' => '<span>',
				'link_after'  => '</span>',
			)
		);
	}
endif;

if ( ! function_exists( 'bloghash_animated_arrow' ) ) :
	/**
	 * Output the animated button HTML markup.
	 *
	 * @since 1.0.0
	 * @param string  $style button style. Can be 'right', or 'left'.
	 * @param string  $type  type attribute for <button> element.
	 * @param boolean $echo  echo the outpur or return.
	 * @return string | void [ tabindex="-1" ]
	 */
	function bloghash_animated_arrow( $style = 'right', $type = 'button', $echo = false ) {

		if ( false !== $type ) {
			$button = '
			<button type="' . esc_attr( $type ) . '" class="bloghash-animate-arrow ' . esc_attr( $style ) . '-arrow" aria-hidden="true" role="button" tabindex="0">
				<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 18"><path class="arrow-handle" d="M2.511 9.007l7.185-7.221c.407-.409.407-1.071 0-1.48s-1.068-.409-1.476 0L.306 8.259a1.049 1.049 0 000 1.481l7.914 7.952c.407.408 1.068.408 1.476 0s.407-1.07 0-1.479L2.511 9.007z"></path><path class="arrow-bar" fill-rule="evenodd" clip-rule="evenodd" d="M1 8h28.001a1.001 1.001 0 010 2H1a1 1 0 110-2z"></path></svg>
			</button>';
		} else {
			$button = '<svg aria-hidden="true" class="bloghash-animate-arrow ' . esc_attr( $style ) . '-arrow" xmlns="http://www.w3.org/2000/svg" width="30" height="18"><path class="arrow-handle" d="M2.511 9.007l7.185-7.221c.407-.409.407-1.071 0-1.48s-1.068-.409-1.476 0L.306 8.259a1.049 1.049 0 000 1.481l7.914 7.952c.407.408 1.068.408 1.476 0s.407-1.07 0-1.479L2.511 9.007z"/><path class="arrow-bar" fill-rule="evenodd" clip-rule="evenodd" d="M30 9a1 1 0 01-1 1H1a1 1 0 010-2h28.002c.552 0 .998.448.998 1z"/></svg>';
		}

		if ( $echo ) {
			echo $button; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
		} else {
			return $button;
		}
	}
endif;

if ( ! function_exists( 'bloghash_excerpt' ) ) :
	/**
	 * Get excerpt.
	 *
	 * @since 1.0.0
	 * @param int    $length the length of the excerpt.
	 * @param string $more What to append if $text needs to be trimmed.
	 */
	function bloghash_excerpt( $length = null, $more = null ) {

		global $post;

		// Check if this post has a custom excerpt.
		if ( has_excerpt( $post->ID ) ) {
			$output = $post->post_excerpt;
		} else {
			// Check for more tag.
			if ( strpos( $post->post_content, '<!--more-->' ) ) {
				$output = apply_filters( 'the_content', get_the_content() ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
			} else {

				if ( null === $length ) {
					$length = apply_filters( 'excerpt_length', intval( bloghash_option( 'excerpt_length' ) ) ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
				}

				if ( null === $more ) {
					$more = apply_filters( 'excerpt_more', bloghash_option( 'excerpt_more' ) ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
				}

				$output = wp_trim_words( strip_shortcodes( $post->post_content ), $length, $more );
			}
		}

		echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
endif;

if ( ! function_exists( 'bloghash_entry_meta_author' ) ) :
	/**
	 * Prints HTML with meta information about theme author.
	 *
	 * @since 1.0.0
	 * @param array $args Author meta arguments.
	 */
	function bloghash_entry_meta_author( $args = array() ) {

		$defaults = array(
			'show_avatar' => is_single() && bloghash_option( 'single_entry_meta_icons' ) || ! is_single() && bloghash_option( 'entry_meta_icons' ),
			'user_id'     => get_post_field( 'post_author', get_the_ID() ),
		);

		$args = wp_parse_args( $args, $defaults );
		$args = apply_filters( 'bloghash_entry_meta_author_args', $args );

		?>
		<span class="post-author">
			<span class="posted-by vcard author" <?php bloghash_schema_markup( 'author' ); ?>>
				<span class="screen-reader-text"><?php esc_html_e( 'Posted by', 'bloghash' ); ?></span>

				<?php if ( $args['show_avatar'] ) { ?>
					<span class="author-avatar">
						<?php echo get_avatar( get_the_author_meta( 'email', $args['user_id'] ), 30 ); ?>
					</span>
				<?php } ?>

				<span>
					<a class="url fn n" title="<?php /* translators: %1$s Author */ printf( esc_attr__( 'View all posts by %1$s', 'bloghash' ), esc_attr( get_the_author() ) ); ?>" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID', $args['user_id'] ) ) ); ?>" rel="author" <?php bloghash_schema_markup( 'url' ); ?>>
						<span class="author-name" <?php bloghash_schema_markup( 'name' ); ?>><?php echo esc_html( get_the_author_meta( 'display_name', $args['user_id'] ) ); ?></span>
					</a>
				</span>
			</span>
		</span>
		<?php
	}
endif;

if ( ! function_exists( 'bloghash_entry_meta_date' ) ) :
	/**
	 * Prints HTML with meta information for the current post-date/time.
	 *
	 * @since 1.0.0
	 * @param array $args Date meta arguments.
	 */
	function bloghash_entry_meta_date( $args = array() ) {

		$defaults = array(
			'show_published' => true,
			'show_modified'  => false,
			'modified_label' => esc_html__( 'Last updated on', 'bloghash' ),
			'date_format'    => '',
			'before'         => '<span class="posted-on">',
			'after'          => '</span>',
		);

		$args = wp_parse_args( $args, $defaults );
		$args = apply_filters( 'bloghash_entry_date_args', $args );

		// Icon.
		$icon = bloghash()->icons->get_meta_icon( 'date', bloghash()->icons->get_svg( 'calendar', array( 'aria-hidden' => 'true' ) ) );

		if ( $args['show_published'] ) {

			if ( $args['show_modified'] && get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
				$time_string = '<time class="entry-date published" datetime="%1$s"%2$s>%3$s</time><time class="updated" datetime="%4$s"%5$s>%6$s</time>';
			} else {
				$time_string = '<time class="entry-date published updated" datetime="%1$s"%2$s>%3$s</time>';
			}
		} elseif ( $args['show_modified'] ) {

			if ( get_the_time( 'U' ) === get_the_modified_time( 'U' ) ) {
				$time_string = '<time class="entry-date published updated" datetime="%4$s"%5$s>%6$s</time>';
			} else {
				$time_string = '<time class="entry-date updated" datetime="%4$s"%5$s>%6$s</time>';
			}
		}

		$args['modified_label'] = $args['modified_label'] ? $args['modified_label'] . ' ' : '';

		$time_string = sprintf(
			$time_string,
			esc_attr( get_the_date( DATE_W3C ) ),
			bloghash_get_schema_markup( 'datePublished' ),
			$icon . esc_html( get_the_date( $args['date_format'] ) ),
			esc_attr( get_the_modified_date( DATE_W3C ) ),
			bloghash_get_schema_markup( 'dateModified' ),
			esc_html( $args['modified_label'] ) . esc_html( get_the_modified_date( $args['date_format'] ) )
		);

		echo wp_kses(
			sprintf(
				'%1$s%2$s%3$s',
				$args['before'],
				$time_string,
				$args['after']
			),
			bloghash_get_allowed_html_tags()
		);
	}
endif;

if ( ! function_exists( 'bloghash_entry_meta_comments' ) ) :
	/**
	 * Prints HTML with meta information for the comments.
	 *
	 * @since 1.0.0
	 */
	function bloghash_entry_meta_comments() {

		$icon = bloghash()->icons->get_meta_icon( 'comments', bloghash()->icons->get_svg( 'message-square', array( 'aria-hidden' => 'true' ) ) );

		if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
			echo '<span class="comments-link">';

			// wp_kses_post( $icon );
			comments_popup_link( wp_kses( $icon, bloghash_get_allowed_html_tags( 'post' ) ) . esc_html__( 'No Comments', 'bloghash' ), wp_kses( $icon, bloghash_get_allowed_html_tags( 'post' ) ) . esc_html__( '1', 'bloghash' ), wp_kses( $icon, bloghash_get_allowed_html_tags( 'post' ) ) . esc_html__( '%', 'bloghash' ), 'comments-link' );

			echo '</span>';
		}
	}
endif;

if ( ! function_exists( 'bloghash_entry_meta_category' ) ) :
	/**
	 * Prints HTML with meta information for the categories.
	 *
	 * @since 1.0.0
	 * @param string $sep Category separator.
	 * @param bool   $show_icon Show an icon for the meta detail.
	 * @param bool   $return Return or output.
	 */
	function bloghash_entry_meta_category( $sep = ', ', $show_icon = true, $limit_categories = -1, $return = false ) {

		$categories      = get_the_category();
		$categories_list = '';

		// Limit the number of categories if $limit_categories is provided.
		if ( $limit_categories > 0 && $categories ) {
			$categories = array_slice( $categories, 0, $limit_categories );
		}

		if ( $categories ) {
			foreach ( $categories as $category ) {
				$category_list[] = '<a href="' . esc_url( get_category_link( $category->term_id ) ) . '" rel="category">' . esc_html( $category->name ) . '</a>';
			}
			$categories_list = join( $sep, $category_list );
		}

		$output = '';

		// Icon.
		$icon = $show_icon ? bloghash()->icons->get_meta_icon( 'category', bloghash()->icons->get_svg( 'folder-open', array( 'aria-hidden' => 'true' ) ) ) : '';

		if ( $categories_list ) {

			$categories_list = preg_replace_callback(
				'/<a href="([^"]+)" rel="category">([^<]+)<\/a>/',
				function( $matches ) {
					$category_id = get_cat_ID( $matches[2] );
					$term        = get_term( $category_id );
					return sprintf( '<a href="%s" class="cat-%d" rel="' . $term->taxonomy . '" >%s</a>', $matches[1], $category_id, $matches[2] );
				},
				$categories_list
			);

			/* translators: 1: posted in label, only visible to screen readers. 2: list of categories. */
			$output = wp_kses(
				apply_filters(
					'bloghash_entry_meta_category',
					sprintf(
						'<span class="cat-links"><span class="screen-reader-text">%1$s</span>%3$s%2$s</span>',
						__( 'Posted in', 'bloghash' ),
						'<span>' . $categories_list . '</span>',
						$icon
					)
				),
				bloghash_get_allowed_html_tags()
			);

			if ( $return ) {
				return $output; // return is used by Core plugin for Posts widget.
			} else {
				echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			}
		}
	}
endif;

if ( ! function_exists( 'bloghash_entry_meta_tag' ) ) :
	/**
	 * Prints HTML with meta information for the tags.
	 *
	 * @since 1.0.0
	 * @param string $before    Before entry meta tag.
	 * @param string $sep       Separator string.
	 * @param string $after     After entry meta tag.
	 * @param int    $id        Post ID.
	 * @param bool   $show_icon Show an icon for the meta detail.
	 */
	function bloghash_entry_meta_tag( $before = '<span class="cat-links"><span>', $sep = ', ', $after = '</span></span>', $id = 0, $show_icon = true ) {

		$icon = $show_icon ? bloghash()->icons->get_meta_icon( 'tags', bloghash()->icons->get_svg( 'tag', array( 'aria-hidden' => 'true' ) ) ) : '';

		// Add icon.
		$before = $before . wp_kses( $icon, bloghash_get_allowed_html_tags() );

		/* translators: used between list items, there is a space after the comma. */
		$tags_list = get_the_tag_list( $before, $sep, $after, $id );

		if ( $tags_list && ! post_password_required() ) {

			$tag_string = '<span class="screen-reader-text">%1$s </span>%2$s';

			/* translators: 1: posted in label, only visible to screen readers. 2: list of tags. */
			echo wp_kses(
				apply_filters(
					'bloghash_entry_meta_tag',
					sprintf(
						$tag_string,
						__( 'Tags:', 'bloghash' ),
						$tags_list
					)
				),
				bloghash_get_allowed_html_tags()
			);
		}
	}
endif;

if ( ! function_exists( 'bloghash_get_post_media' ) ) :

	/**
	 * Post format featured media: image / gallery / audio / video etc.
	 *
	 * @since  1.0.0
	 * @return mixed
	 * @param  string $post_format Post Format.
	 * @param  mixed  $post        Post object.
	 */
	function bloghash_get_post_media( $post_format = false, $post = null ) {

		if ( false === $post_format ) {
			$post_format = get_post_format( $post );
		}

		$return = '';

		switch ( $post_format ) {

			case 'video':
				$return = bloghash_get_video_from_post( $post );
				break;

			case 'audio':
				$return = do_shortcode( bloghash_get_audio_from_post( $post ) );
				break;

			case 'gallery':
				$gallery = bloghash_get_post_gallery( $post );

				if ( isset( $gallery['ids'] ) ) {

					$img_ids = explode( ',', $gallery['ids'] );

					if ( is_array( $img_ids ) && ! empty( $img_ids ) ) {
						foreach ( $img_ids as $img_id ) {

							$image_alt = get_post_meta( $img_id, '_wp_attachment_image_alt', true );
							$image_url = wp_get_attachment_url( $img_id );

							$return .= '<a href="' . esc_url( get_permalink( $post ) ) . '" >';
							$return .= '<img src="' . esc_url( $image_url ) . '" alt="' . esc_attr( $image_alt ) . '" >';
							$return .= '</a>';
						}
					}
				}
				break;

			case 'image':
			default:
				$size    = bloghash_option( 'blog_image_size' );
				$caption = false;

				if ( is_single( $post ) || is_page( $post ) ) {

					$caption = true;

					if ( 'no-sidebar' === bloghash_get_sidebar_position( $post ) ) {
						$size = 'full';
					}
				}

				if ( has_post_thumbnail( $post ) ) {
					$return = bloghash_get_post_thumbnail( $post, $size, $caption );
				} elseif ( 'image' === $post_format ) {
					$return = bloghash_get_image_from_post( $post );
				}

				break;
		}

		return apply_filters( 'bloghash_get_post_media', $return, $post_format, $post );
	}
endif;

if ( ! function_exists( 'bloghash_post_media' ) ) :

	/**
	 * Print HTML format featured media: image / gallery / audio / video etc.
	 *
	 * @since 1.0.0
	 * @return mixed
	 * @param  string $post_format Post Format.
	 */
	function bloghash_post_media( $post_format = false ) {
		echo bloghash_get_post_media( $post_format ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
	}
endif;

if ( ! function_exists( 'bloghash_top_bar_widget_text' ) ) :
	/**
	 * Outputs the top bar text widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_top_bar_widget_text( $options ) {

		$content = isset( $options['content'] ) ? $options['content'] : '';
		$content = apply_filters( 'bloghash_dynamic_strings', $content );

		echo '<span>' . wp_kses( do_shortcode( $content ), bloghash_get_allowed_html_tags() ) . '</span>';
	}
endif;

if ( ! function_exists( 'bloghash_top_bar_widget_nav' ) ) :
	/**
	 * Outputs the top bar navigation widget.
	 *
	 * @param array $options Array of navigation widget options.
	 * @since 1.0.0
	 */
	function bloghash_top_bar_widget_nav( $options ) {

		$defaults = array(
			'menu_id'     => 'bloghash-topbar-nav',
			'container'   => false,
			'menu_class'  => false,
			'link_before' => '<span>',
			'link_after'  => '</span>',
			'menu'        => '',
		);

		$options = wp_parse_args( $options, $defaults );
		$options = apply_filters( 'bloghash_top_bar_navigation_args', $options );

		if ( empty( $options['menu'] ) ) {
			if ( is_user_logged_in() && current_user_can( 'edit_theme_options' ) ) {
				?>
				<ul>
					<li class="bloghash-empty-nav">
						<?php
						if ( is_customize_preview() ) {
							esc_html_e( 'Menu not assigned', 'bloghash' );
						} else {
							?>
							<a href="<?php echo esc_url( admin_url( 'customize.php?autofocus[control]=bloghash_top_bar_widgets' ) ); ?>"><?php echo esc_html__( 'Assign a menu', 'bloghash' ); ?></a>
						<?php } ?>
					</li>
				</ul>
				<?php
			}
			return;
		}

		$options['before_nav'] = '<nav class="bloghash-nav" role="navigation" aria-label="' . esc_attr( $options['menu'] ) . '">';
		$options['after_nav']  = '</nav>';

		bloghash_navigation( $options );
	}
endif;

if ( ! function_exists( 'bloghash_top_bar_widget_socials' ) ) :
	/**
	 * Outputs the top bar social links widget.
	 *
	 * @param array $options Array of widget options.
	 * @since 1.0.0
	 */
	function bloghash_top_bar_widget_socials( $options ) {
		bloghash_social_links( $options );
	}
endif;

if ( ! function_exists( 'bloghash_header_widget_text' ) ) :
	/**
	 * Outputs the header text widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_header_widget_text( $options ) {
		bloghash_top_bar_widget_text( $options );
	}
endif;

if ( ! function_exists( 'bloghash_header_widget_advertisements' ) ) :
	/**
	 * Outputs the header advertisements widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_header_widget_advertisements( $options ) {

		$content = isset( $options['content'] ) ? $options['content'] : '';
		$content = apply_filters( 'bloghash_dynamic_strings', $content );

		echo '<span>' . wp_kses( do_shortcode( $content ), bloghash_get_allowed_html_tags() ) . '</span>';
	}
endif;

if ( ! function_exists( 'bloghash_header_widget_socials' ) ) :
	/**
	 * Outputs the header social links widget.
	 *
	 * @param array $options Array of widget options.
	 * @since 1.1.0
	 */
	function bloghash_header_widget_socials( $options ) {
		bloghash_social_links( $options );
	}
endif;

if ( ! function_exists( 'bloghash_header_widget_darkmode' ) ) :
	/**
	 * Outputs the header dark mode widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_header_widget_darkmode( $options ) {
		if ( isset( $options['style'] ) ) {
			$class[] = $options['style'];
		} else {
			$class[] = 'rounded-border';
		}
		$class = trim( implode( ' ', $class ) );
		echo wp_kses(
			sprintf(
				'<button type="button" class="bloghash-darkmode %1$s"><span></span></button>',
				esc_attr( $class )
			),
			bloghash_get_allowed_html_tags()
		);
	}
endif;

if ( ! function_exists( 'bloghash_header_widget_search' ) ) :
	/**
	 * Outputs the header search widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_header_widget_search( $options ) {
		get_template_part( 'template-parts/header/widgets/search' );
	}
endif;

if ( ! function_exists( 'bloghash_header_widget_button' ) ) :
	/**
	 * Outputs the header button widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_header_widget_button( $options ) {

		$class = array( $options['class'] );

		if ( isset( $options['style'] ) ) {
			$class[] = $options['style'];
		}

		$class[] = 'bloghash-btn';

		$class = apply_filters( 'bloghash_header_widget_button_class', $class );
		$class = trim( implode( ' ', $class ) );

		$text = empty( $options['text'] ) ? __( 'Add Button Text', 'bloghash' ) : $options['text'];

		$target = 'target="_self"';

		if ( '_blank' === $options['target'] ) {
			$target = 'target="_blank" rel="noopener noreferrer"';
		}

		echo wp_kses(
			sprintf(
				'<a href="%1$s" class="%2$s" %3$s role="button"><span>%4$s</span></a>',
				esc_url( $options['url'] ),
				esc_attr( $class ),
				$target,
				$text
			),
			bloghash_get_allowed_html_tags()
		);
	}
endif;

if ( ! function_exists( 'bloghash_about_widget_button' ) ) :
	/**
	 * Outputs About widget button.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_about_widget_button( $options ) {
		bloghash_header_widget_button( $options );
	}
endif;

if ( ! function_exists( 'bloghash_cta_widget_button' ) ) :
	/**
	 * Outputs CTA widget button.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_cta_widget_button( $options ) {
		bloghash_header_widget_button( $options );
	}
endif;

if ( ! function_exists( 'bloghash_cta_widget_text' ) ) :
	/**
	 * Outputs CTA widget text.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_cta_widget_text( $options ) {
		bloghash_top_bar_widget_text( $options );
	}
endif;

if ( ! function_exists( 'bloghash_copyright_widget_text' ) ) :
	/**
	 * Outputs the top bar text widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_copyright_widget_text( $options ) {
		bloghash_top_bar_widget_text( $options );
	}
endif;

if ( ! function_exists( 'bloghash_copyright_widget_nav' ) ) :
	/**
	 * Outputs the copyright navigation widget.
	 *
	 * @param array $options Array of widget options.
	 * @since 1.0.0
	 */
	function bloghash_copyright_widget_nav( $options ) {

		$defaults = array(
			'menu_id'     => 'bloghash-footer-nav',
			'container'   => false,
			'menu_class'  => false,
			'link_before' => '<span>',
			'link_after'  => '</span>',
			'menu'        => '',
		);

		$options = wp_parse_args( $options, $defaults );
		$options = apply_filters( 'bloghash_copyright_navigation_args', $options );

		if ( empty( $options['menu'] ) ) {
			if ( is_user_logged_in() && current_user_can( 'edit_theme_options' ) ) {
				?>
				<ul>
					<li class="bloghash-empty-nav">
						<?php
						if ( is_customize_preview() ) {
							esc_html_e( 'Menu not assigned', 'bloghash' );
						} else {
							?>
							<a href="<?php echo esc_url( admin_url( 'customize.php?autofocus[control]=bloghash_copyright_widgets' ) ); ?>"><?php echo esc_html__( 'Assign a menu', 'bloghash' ); ?></a>
						<?php } ?>
					</li>
				</ul>
				<?php
			}
			return;
		}

		$options['before_nav'] = '<nav role="navigation" class="bloghash-nav">';
		$options['after_nav']  = '</nav>';

		bloghash_navigation( $options );
	}
endif;

if ( ! function_exists( 'bloghash_copyright_widget_socials' ) ) :
	/**
	 * Outputs the copyright social links widget.
	 *
	 * @param array $options Array of widget options.
	 * @since 1.0.0
	 */
	function bloghash_copyright_widget_socials( $options ) {
		bloghash_social_links( $options );
	}
endif;

if ( ! function_exists( 'bloghash_footer_widgets' ) ) :
	/**
	 * Outputs the footer widgets.
	 *
	 * @since 1.0.0
	 */
	function bloghash_footer_widgets() {

		$footer_layout  = bloghash_option( 'footer_layout' );
		$column_classes = bloghash_get_footer_column_class( $footer_layout );

		if ( is_array( $column_classes ) && ! empty( $column_classes ) ) {
			foreach ( $column_classes as $i => $column_class ) {

				$sidebar_id = 'bloghash-footer-' . ( $i + 1 );
				?>
				<div class="bloghash-footer-column <?php echo esc_attr( $column_class ); ?>">
					<?php
					if ( is_active_sidebar( $sidebar_id ) ) {
						dynamic_sidebar( $sidebar_id );
					} else {

						if ( current_user_can( 'edit_theme_options' ) ) {

							$sidebar_name = bloghash_get_sidebar_name_by_id( $sidebar_id );
							?>
							<div class="bloghash-footer-widget bloghash-widget bloghash-no-widget">

								<div class='h4 widget-title'><?php echo esc_html( $sidebar_name ); ?></div>

								<p class='no-widget-text'>
									<?php if ( is_customize_preview() ) { ?>
										<a href='#' class="bloghash-set-widget" data-sidebar-id="<?php echo esc_attr( $sidebar_id ); ?>">
										<?php } else { ?>
											<a href='<?php echo esc_url( admin_url( 'widgets.php' ) ); ?>'>
											<?php } ?>
											<?php esc_html_e( 'Click here to assign a widget.', 'bloghash' ); ?>
											</a>
								</p>
							</div>
							<?php
						}
					}
					?>
				</div>
				<?php
			}
		}
	}
endif;


if ( ! function_exists( 'bloghash_ad_widget_advertisement' ) ) :
	/**
	 * Outputs the header button widget.
	 *
	 * @since 1.0.0
	 * @param array $options Array of widget options.
	 */
	function bloghash_ad_widget_advertisements( $options ) {
		?>
			<div class="ads-banner bloghash-container">
			<?php
			if ( isset( $options['url'] ) && $options['url'] !== '' ) {
				printf(
					'<a href="%s" target="%s">%s</a>',
					esc_url( $options['url'] ),
					esc_attr( $options['target'] ),
					wp_get_attachment_image( $options['image_id'], 'full' )
				);
			} else {
				echo wp_get_attachment_image( $options['image_id'], 'full' );
			}

			?>
			</div><!-- .ads-banner -->
		<?php
	}
endif;


if ( ! function_exists( 'bloghash_random_post_archive_advertisement_part' ) ) :
	function bloghash_random_post_archive_advertisement_part( $ads_rendered ) {
		$ad_widgets = array_values( array_filter(
			bloghash_option( 'ad_widgets' ),
			function( $widget ) {
				return isset( $widget['values']['display_area'] ) && in_array( 'random_post_archives', $widget['values']['display_area'] );
			}
		) );

		if ( ! empty( $ad_widgets ) && isset( $ad_widgets[ $ads_rendered ] ) ) :

			$classes   = array();
			$classes[] = 'bloghash-ad-widget__' . esc_attr( $ad_widgets[ $ads_rendered ]['type'] );
			$classes[] = 'bloghash-ad-widget';

			if ( isset( $ad_widgets[ $ads_rendered ]['values']['visibility'] ) && $ad_widgets[ $ads_rendered ]['values']['visibility'] ) {
				$classes[] = 'bloghash-' . esc_attr( $ad_widgets[ $ads_rendered ]['values']['visibility'] );
			}

			$classes = apply_filters( 'bloghash_ad_widget_classes', $classes, $ad_widgets[ $ads_rendered ] );
			$classes = trim( implode( ' ', $classes ) );

			printf( '<div class="%s">', esc_attr( $classes ) );
			bloghash_ad_widget_advertisements( $ad_widgets[ $ads_rendered ]['values'] );
			printf( '</div>' );

		endif;
	}
endif;

if ( ! function_exists( 'bloghash_comment' ) ) :
	/**
	 * Comment and pingback output function.
	 *
	 * @since 1.0.0
	 * @param string $comment Comment content.
	 * @param array  $args    Comment arguments.
	 * @param int    $depth   Comment depth.
	 */
	function bloghash_comment( $comment, $args, $depth ) {

		global $post;

		if ( 'pingback' === $comment->comment_type ) {
			?>
			<li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">

				<article id="comment-<?php comment_ID(); ?>" class="bloghash-pingback">
					<p><?php esc_html_e( 'Pingback: ', 'bloghash' ); ?><span<?php bloghash_schema_markup( 'author_name' ); ?>><?php comment_author_link(); ?></span> <?php edit_comment_link( esc_html__( '(Edit)', 'bloghash' ), '<span class="edit-link">', '</span>' ); ?></p>
				</article>

			<?php } else { ?>
			<li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">
				<article 
				<?php
							comment_class( 'comment-body' );
							bloghash_schema_markup( 'comment' );
				?>
							>

					<header class="comment-header">
						<div class="comment-author vcard">

							<span class="comment-author-avatar">
								<?php echo get_avatar( $comment, $args['avatar_size'] ); ?>

								<?php if ( $comment->user_id === $post->post_author ) { ?>
									<span class="bypostauthor-badge" aria-hidden="true" title="<?php esc_attr_e( 'The post author', 'bloghash' ); ?>"><?php echo esc_html_x( 'A', 'Post author badge on comments', 'bloghash' ); ?></span>
								<?php } ?>
							</span>

							<span class="comment-author-meta">
								<cite class="fn">
									<?php comment_author_link(); ?>
								</cite>
							</span>

						</div><!-- END .comment-author -->

						<div class="comment-actions">
							<?php
							$bloghash_comment_reply_link = get_comment_reply_link(
								array_merge(
									$args,
									array(
										'depth'      => $depth,
										'reply_text' => $args['reply_text'],
									)
								)
							);
							?>
							<div class="edit">
								<?php edit_comment_link( __( 'Edit', 'bloghash' ) ); ?>
							</div>

							<?php
							if ( current_user_can( 'edit_comment', get_comment_ID() ) && null !== $bloghash_comment_reply_link ) {
								?>
								<span class="bloghash-comment-sep"></span>
								<?php
							}
							?>

							<div class="reply">
								<?php
								echo $bloghash_comment_reply_link; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 
								?>
							</div>
						</div>
					</header><!-- END .comment-header -->

					<div class="comment-meta commentmetadata">
						<?php comment_date(); ?>,
						<a href="<?php echo esc_url( get_comment_link() ); ?>" class="comment-date">
							<time datetime="<?php echo esc_attr( get_comment_date( 'c' ) ); ?>"><?php comment_time(); ?></time>
						</a>
					</div><!-- END .comment-meta -->

					<div class="comment-content">
						<?php if ( '0' === $comment->comment_approved ) : ?>
							<p class="comment-awaiting-moderation"><em><?php esc_html_e( 'Your comment is awaiting moderation.', 'bloghash' ); ?></em></p>
						<?php endif; ?>

						<?php comment_text(); ?>
					</div><!-- END .comment-content -->

				</article><!-- END .comment-body -->
			<?php
			} // endif
			?>
		<?php
	}
endif;

if ( ! function_exists( 'bloghash_social_links' ) ) :
	/**
	 * The template tag for displaying social icons.
	 *
	 * @param  array $args Args for wp_nav_menu function.
	 * @since  1.0.0
	 * @return void
	 */
	function bloghash_social_links( $args = array() ) {

		$defaults = array(
			'fallback_cb'     => '',
			'menu'            => '',
			'container'       => 'nav',
			'container_class' => 'bloghash-social-nav',
			'menu_class'      => 'bloghash-socials-menu',
			'depth'           => 1,
			'link_before'     => '<span class="screen-reader-text">',
			'link_after'      => '</span>' . bloghash()->icons->get_svg( 'external-link', array( 'aria-hidden' => 'true' ) ) . bloghash()->icons->get_svg(
				'external-link',
				array(
					'aria-hidden' => 'true',
					'class'       => 'bottom-icon',
				)
			) . '</span>',
			'style'           => '',
			'size'            => '',
			'align'           => '',
		);

		$args = wp_parse_args( $args, $defaults );
		$args = apply_filters( 'bloghash_social_links_args', $args );

		// Add style class to container_class.
		if ( ! empty( $args['style'] ) ) {
			$args['container_class'] .= ' ' . esc_attr( $args['style'] );
		}

		// Add alignment class to container_class.
		if ( ! empty( $args['align'] ) ) {
			$args['menu_class'] .= ' ' . esc_attr( $args['align'] );
		}

		// Add size class to container_class.
		if ( ! empty( $args['size'] ) ) {
			$args['container_class'] .= ' bloghash-' . esc_attr( $args['size'] );
		}

		if ( ! empty( $args['menu'] ) && is_nav_menu( $args['menu'] ) ) {
			wp_nav_menu( $args );
		} else {
			echo '<nav class="bloghash-social-nav ' . esc_attr( $args['style'] ) . ' bloghash-' . esc_attr( $args['size'] ) . '">
			<ul id="menu-social-menu-default" class="bloghash-socials-menu">
				<li class="menu-item">
					<a href="https://www.facebook.com/">
						<span class="screen-reader-text">facebook.com</span>
						<span class="facebook">
						' . bloghash()->icons->get_svg( 'facebook', array( 'aria-hidden' => 'true' ) ) . '
						' . bloghash()->icons->get_svg(
							'facebook',
							array(
								'aria-hidden' => 'true',
								'class'       => 'bottom-icon',
							)
						) . '
						</span>
					</a>
				</li>
				<li class="menu-item">
					<a href="https://twitter.com/">
					<span class="screen-reader-text">twitter.com</span>
						<span class="twitter">
						' . bloghash()->icons->get_svg( 'twitter', array( 'aria-hidden' => 'true' ) ) . '
						' . bloghash()->icons->get_svg(
							'twitter',
							array(
								'aria-hidden' => 'true',
								'class'       => 'bottom-icon',
							)
						) . '
						</span>
					</a>
				</li>
				<li class="menu-item">
					<a href="https://t.me/">
						<span class="screen-reader-text">t.me</span>
						<span class="telegram">
						' . bloghash()->icons->get_svg( 'telegram', array( 'aria-hidden' => 'true' ) ) . '
						' . bloghash()->icons->get_svg(
							'telegram',
							array(
								'aria-hidden' => 'true',
								'class'       => 'bottom-icon',
							)
						) . '
						</span>
					</a>
				</li>
				<li class="menu-item">
					<a href="https://www.instagram.com/">
						<span class="screen-reader-text">instagram.com</span>
						<span class="instagram">
						' . bloghash()->icons->get_svg( 'instagram', array( 'aria-hidden' => 'true' ) ) . '
						' . bloghash()->icons->get_svg(
							'instagram',
							array(
								'aria-hidden' => 'true',
								'class'       => 'bottom-icon',
							)
						) . '
						</span>
					</a>
				</li>
				<li class="menu-item">
					<a href="https://youtube.com/">
						<span class="screen-reader-text">youtube.com</span>
						<span class="youtube">
						' . bloghash()->icons->get_svg( 'youtube', array( 'aria-hidden' => 'true' ) ) . '
						' . bloghash()->icons->get_svg(
							'youtube',
							array(
								'aria-hidden' => 'true',
								'class'       => 'bottom-icon',
							)
						) . '
						</span>
					</a>
				</li>
			</ul>
			</nav>';
		}
	}
endif;

if ( ! function_exists( 'bloghash_navigation' ) ) :
	/**
	 * The template tag for displaying social icons.
	 *
	 * @param  array $args Args for wp_nav_menu function.
	 * @since  1.0.0
	 * @return void
	 */
	function bloghash_navigation( $args = array() ) {

		$defaults = array(
			'before_nav' => '',
			'after_nav'  => '',
		);

		$args = wp_parse_args( $args, $defaults );

		$args['items_wrap'] = isset( $args['items_wrap'] ) ? $args['items_wrap'] : '<ul id="%1$s" class="%2$s">%3$s</ul>';
		$args['items_wrap'] = $args['before_nav'] . $args['items_wrap'] . $args['after_nav'];

		$args = apply_filters( 'bloghash_navigation_args', $args );

		if ( ! empty( $args['menu'] ) && is_nav_menu( $args['menu'] ) ) {
			wp_nav_menu( $args );
		}
	}
endif;

if ( ! function_exists( 'bloghash_breadcrumb' ) ) :
	/**
	 * Outputs breadcrumbs trail
	 *
	 * @param array $args Array of breadcrumb options.
	 */
	function bloghash_breadcrumb( $args = array() ) {

		$args = wp_parse_args(
			$args,
			array(
				'container_before' => '',
				'container_after'  => '',
			)
		);

		echo wp_kses_post( $args['container_before'] );

		bloghash_breadcrumb_trail(
			array(
				'show_browse' => false,
			)
		);

		echo wp_kses_post( $args['container_after'] );
	}
endif;

// Outputs the header widgets in Header Widget Locations
function bloghash_header_widget_output( $locations, $all_widgets ) {

	$header_widgets = $all_widgets;
	$header_class   = '';

	if ( ! empty( $locations ) ) {

		$header_widgets = array();

		foreach ( $locations as $location ) {

			$header_class = ' bloghash-widget-location-' . $location;

			$header_widgets[ $location ] = array();

			if ( ! empty( $all_widgets ) ) {
				foreach ( $all_widgets as $i => $widget ) {
					if ( $location === $widget['values']['location'] ) {
						$header_widgets[ $location ][] = $widget;
					}
				}
			}
		}
	}

	echo '<div class="bloghash-header-widgets bloghash-header-element' . esc_attr( $header_class ) . '">';

	if ( ! empty( $header_widgets ) ) {
		foreach ( $header_widgets as $location => $widgets ) {

			do_action( 'bloghash_header_widgets_before_' . $location );

			if ( ! empty( $widgets ) ) {
				foreach ( $widgets as $widget ) {
					if ( function_exists( 'bloghash_header_widget_' . $widget['type'] ) ) {

						$classes   = array();
						$classes[] = 'bloghash-header-widget__' . esc_attr( $widget['type'] );
						$classes[] = 'bloghash-header-widget';

						if ( isset( $widget['values']['visibility'] ) && $widget['values']['visibility'] ) {
							$classes[] = 'bloghash-' . esc_attr( $widget['values']['visibility'] );
						}

						$classes = apply_filters( 'bloghash_header_widget_classes', $classes, $widget );
						$classes = trim( implode( ' ', $classes ) );

						printf( '<div class="%s"><div class="bloghash-widget-wrapper">', esc_attr( $classes ) );
						call_user_func( 'bloghash_header_widget_' . $widget['type'], $widget['values'] );
						printf( '</div></div><!-- END .bloghash-header-widget -->' );
					}
				}
			}

			do_action( 'bloghash_header_widgets_after_' . $location );
		}
	}

	echo '</div><!-- END .bloghash-header-widgets -->';
}
