'; $comment_count = get_comments_number(); if ( '1' === $comment_count ) { esc_html_e( '1 ', 'azurie' ); } else { printf( // WPCS: XSS OK. esc_html( _nx( ' %1$s ', ' %1$s ', $comment_count, 'comments title', 'azurie' ) ), number_format_i18n( $comment_count ) ); } echo ''; } endif; /** * All categories */ if ( ! function_exists( 'azurie_all_categories' ) ) : function azurie_all_categories() { $Separate_meta = ', '; $categories_list = get_the_category_list($Separate_meta); if ( $categories_list ) { echo '
  • ' . $categories_list . '
  • '; } } endif; /** * Blog post meta post by */ if ( ! function_exists( 'azurie_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function azurie_posted_by() { $byline = sprintf( /* translators: %s: post author. */ esc_html_x( 'By %s', 'post author', 'azurie' ), '' . esc_html( get_the_author() ) . '' ); echo '
  • ' . $byline ; _e(' At ','azurie'); echo get_the_time().'
  • '; // WPCS: XSS OK. } endif; /** * Post author */ if ( ! function_exists( 'azurie_post_author_image' ) ) : function azurie_post_author_image() { echo '
  • '.get_avatar( get_the_author_meta( 'ID' ), 32, '', '' , $args = array( 'class' => array( 'img-fluid ', 'author-img' ) )).'
  • '; } endif; if(!function_exists('azurie_setup')): function azurie_setup() { // custom header Support $args = array( 'default-image' => get_template_directory_uri() .'/images/fun-facts.jpg', 'width' => '1600', 'height' => '900', 'flex-height' => false, 'flex-width' => false, 'header-text' => true, 'default-text-color' => '#143745' ); add_theme_support( 'custom-header', $args ); } endif; add_action('after_setup_theme','azurie_setup'); /** * Before Footer */ function azurie_footer_before(){ do_action( 'azurie_footer_before' ); } /** * widget Footer */ function azurie_footer(){ do_action( 'azurie_footer' ); } /** * After Footer */ function azurie_footer_after(){ do_action( 'azurie_footer_after' ); } /** * Scroll to top button */ function azurie_scroll_to_top(){ do_action( 'azurie_scroll_to_top' ); } /** * Function to get site Footer */ if ( ! function_exists( 'azurie_footer_markup' ) ) { /** * Site Footer -