esc_html__( 'Primary Menu', 'busipress' ),
'footer' => esc_html__( 'Footer Menu', 'busipress' ),
) );
}
endif;
add_action('after_setup_theme','busipress_setup');
/**
* Get the comments
*/
if ( ! function_exists( 'busipress_get_comments_number' ) ) :
/**
* Prints HTML with the comment count for the current post.
*/
function busipress_get_comments_number() {
echo '
';
}
endif;
/**
* All categories
*/
if ( ! function_exists( 'busipress_all_categories' ) ) :
function busipress_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( 'busipress_posted_by' ) ) :
/**
* Prints HTML with meta information for the current author.
*/
function busipress_posted_by() {
$byline = sprintf(
/* translators: %s: post author. */
esc_html_x( 'By %s', 'post author', 'busipress' ),
'' . esc_html( get_the_author() ) . ''
);
echo '
' . $byline ;
_e(' At ','busipress');
echo get_the_time().'
'; // WPCS: XSS OK.
}
endif;
/**
* Post author
*/
if ( ! function_exists( 'busipress_post_author_image' ) ) :
function busipress_post_author_image() {
echo '