' ;
camer_entry_author();
camer_entry_date();
camer_entry_comments();
camer_edit_link();
echo '';
}
endif;
/**
* Displays the meta info for the default blog styles
*/
if ( ! function_exists( 'camer_default_entry_meta' ) ) :
function camer_default_entry_meta() {
echo '
';
}
}
endif;
// Get the full category list for a post
if ( ! function_exists( 'camer_categories' ) ) :
function camer_categories() {
echo get_the_category_list(); // WPCS: XSS OK.
}
endif;
// Edit link function
if ( ! function_exists( 'camer_edit_link' ) ) :
function camer_edit_link() {
edit_post_link(
sprintf(
wp_kses(
/* translators: %s: Name of current post. Only visible to screen readers */
__( 'Edit %s', 'camer' ),
array(
'span' => array(
'class' => array(),
),
)
),
get_the_title()
),
'
',
'
'
);
}
endif;
if ( ! function_exists( 'camer_blog_title' ) ) :
/**
* Show a custom blog home title and introduction.
* Displays the archive title and archive description for the blog index
*/
function camer_blog_title() {
// Get blog title and descripton from database.
$camer_blog_title = get_theme_mod( 'camer_blog_title' );
$camer_blog_description = get_theme_mod( 'camer_blog_description' );
// Display Blog Title.
if ( '' !== $camer_blog_title || '' !== $camer_blog_description || is_customize_preview() && get_theme_mod( 'camer_show_blog_title', false ) ) : ?>
post_excerpt;
if(!empty($get_description) && is_single() || is_page()) {
// If caption exists - show it
echo '' . esc_html($get_description) . '';
}
}
endif;
if ( ! function_exists( 'camer_post_default_image' ) ) :
// Displays the featured image on single posts in a standard default format
function camer_post_image() {
echo '';
the_post_thumbnail();
echo '';
}
endif;
if ( ! function_exists( 'camer_entry_tags' ) ) :
/**
* Displays the post tags on single post view
*/
function camer_entry_tags() {
$tag_list = get_the_tag_list( '
$depth, 'max_depth' => $args['max_depth'] ) ) ) ?>