id="comment-">
ID )) {
$post_class = get_post_meta( $post->ID, 'acmephoto_sidebar_layout', true );
if ( 'default-sidebar' != $post_class ){
if ( $post_class ) {
$acmephoto_body_classes = $post_class;
} else {
$acmephoto_body_classes = $acmephoto_body_global_class;
}
}
else{
$acmephoto_body_classes = $acmephoto_body_global_class;
}
}
elseif ( is_archive() ) {
if( isset( $acmephoto_customizer_all_values['acmephoto-archive-sidebar-layout'] ) ){
$acmephoto_archive_sidebar_layout = $acmephoto_customizer_all_values['acmephoto-archive-sidebar-layout'];
if(
'right-sidebar' == $acmephoto_archive_sidebar_layout ||
'left-sidebar' == $acmephoto_archive_sidebar_layout ||
'both-sidebar' == $acmephoto_archive_sidebar_layout ||
'no-sidebar' == $acmephoto_archive_sidebar_layout
){
$acmephoto_body_classes = $acmephoto_archive_sidebar_layout;
}
else{
$acmephoto_body_classes = $acmephoto_body_global_class;
}
}
else{
$acmephoto_body_classes= $acmephoto_body_global_class;
}
}
else {
$acmephoto_body_classes = $acmephoto_body_global_class;
}
return $acmephoto_body_classes;
}
endif;
/**
* Return content of fixed lenth
*
* @since AcmePhoto 1.0.0
*
* @param string $acmephoto_content
* @param int $length
* @return string
*
*/
if ( ! function_exists( 'acmephoto_words_count' ) ) :
function acmephoto_words_count( $acmephoto_content = null, $length = 16 ) {
$length = absint( $length );
$source_content = preg_replace( '`\[[^\]]*\]`', '', $acmephoto_content );
$trimmed_content = wp_trim_words( $source_content, $length, '...' );
return $trimmed_content;
}
endif;
/**
* BreadCrumb Settings
*/
if( ! function_exists( 'acmephoto_breadcrumbs' ) ):
function acmephoto_breadcrumbs() {
$acmephoto_customizer_all_values = acmephoto_get_theme_options();
if ( ! function_exists( 'breadcrumb_trail' ) ) {
require_once acmephoto_file_directory('acmethemes/library/breadcrumbs/breadcrumbs.php');
}
$breadcrumb_args = array(
'container' => 'div',
'show_browse' => false
);
$acmephoto_you_are_here_text = $acmephoto_customizer_all_values['acmephoto-you-are-here-text'];
if( !empty( $acmephoto_you_are_here_text ) ){
$acmephoto_you_are_here_text = "".$acmephoto_you_are_here_text."";
}
echo "".$acmephoto_you_are_here_text."
";
breadcrumb_trail( $breadcrumb_args );
echo "
";
}
endif;