'; $comment_count = get_comments_number(); if ( '1' === $comment_count ) { esc_html_e( '1 ', 'busicorp' ); } else { printf( // WPCS: XSS OK. esc_html( _nx( ' %1$s ', ' %1$s ', $comment_count, 'comments title', 'busicorp' ) ), number_format_i18n( $comment_count ) ); } echo ''; } endif; /** * All categories */ if ( ! function_exists( 'busicorp_all_categories' ) ) : function busicorp_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( 'busicorp_posted_by' ) ) : /** * Prints HTML with meta information for the current author. */ function busicorp_posted_by() { $byline = sprintf( /* translators: %s: post author. */ esc_html_x( 'By %s', 'post author', 'busicorp' ), '' . esc_html( get_the_author() ) . '' ); echo '
  • ' . $byline ; _e(' At ','busicorp'); echo get_the_time().'
  • '; // WPCS: XSS OK. } endif; /** * Post author */ if ( ! function_exists( 'busicorp_post_author_image' ) ) : function busicorp_post_author_image() { echo '
  • '.get_avatar( get_the_author_meta( 'ID' ), 32, '', '' , $args = array( 'class' => array( 'img-fluid ', 'author-img' ) )).'
  • '; } endif; function busicorp_widgets_init(){ register_sidebar( array( 'name' => esc_html__( 'Top header right social', 'busicorp' ), 'id' => 'top-header-social', 'description' => '', 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ', ) ); } add_action( 'widgets_init', 'busicorp_widgets_init' ); /** * Before Footer */ function busicorp_footer_before(){ do_action( 'busicorp_footer_before' ); } /** * widget Footer */ function busicorp_footer(){ do_action( 'busicorp_footer' ); } /** * After Footer */ function busicorp_footer_after(){ do_action( 'busicorp_footer_after' ); } /** * Scroll to top button */ function busicorp_scroll_to_top(){ do_action( 'busicorp_scroll_to_top' ); } /** * Function to get site Footer */ if ( ! function_exists( 'busicorp_footer_markup' ) ) { /** * Site Footer -