Scusate il doppio post ma non entrava tutto in unico post causa mancanza di caratteri.
Continua.
Codice PHP:
/**
* Select sidebar according to the options saved
*
* @since supernews 1.0.0
*
* @param null
* @return string
*
*/
if ( !function_exists('supernews_sidebar_selection') ) :
function supernews_sidebar_selection( ) {
global $supernews_customizer_all_values;
if(
'left-sidebar' == $supernews_customizer_all_values['supernews-sidebar-layout'] ||
'no-sidebar' == $supernews_customizer_all_values['supernews-sidebar-layout']
){
$supernewsbody_global_class = $supernews_customizer_all_values['supernews-sidebar-layout'];
}
else{
$supernewsbody_global_class= 'right-sidebar';
}
return $supernewsbody_global_class;
}
endif;
/**
* Return content of fixed lenth
*
* @since supernews 1.0.0
*
* @param string $supernews_content
* @param int $length
* @return string
*
*/
if ( ! function_exists( 'supernews_words_count' ) ) :
function supernews_words_count( $supernews_content = null, $length = 16 ) {
$length = absint( $length );
$source_content = preg_replace( '`\[[^\]]*\]`', '', $supernews_content );
$trimmed_content = wp_trim_words( $source_content, $length, '...' );
return $trimmed_content;
}
endif;
/**
* BreadCrumb Settings
*/
if( ! function_exists( 'supernews_breadcrumbs' ) ):
function supernews_breadcrumbs() {
wp_reset_postdata();
global $post;
$trans_here = __( 'You are here', 'supernews' );
$trans_home = __( 'Home', 'supernews' );
$search_result_text = __( 'Search Results for ', 'supernews' );
$showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show
$delimiter = '<span class="bread_arrow"> > </span>'; // delimiter between crumbs
$home = $trans_home; // text for the 'Home' link
$showHomeLink = 1;
$showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show
$before = '<span class="current">'; // tag before the current crumb
$after = '</span>'; // tag after the current crumb
$homeLink = esc_url( home_url() );
if (is_home() || is_front_page()) {
if ($showOnHome == 1) echo '<div id="supernews-breadcrumbs"><div class="breadcrumb-container"><a href="' . $homeLink . '">' . $home . '</a></div></div>';
} else {
if($showHomeLink == 1){
echo '<div id="supernews-breadcrumbs" class="clearfix"><span class="breadcrumb">'.esc_attr( $trans_here ).'</span><div class="breadcrumb-container"><a href="' . $homeLink . '">' . $home . '</a> ' . $delimiter . ' ';
} else {
echo '<div id="supernews-breadcrumbs" class="clearfix"><span class="breadcrumb">'.esc_attr( $trans_here ).'</span><div class="breadcrumb-container">' . $home . ' ' . $delimiter . ' ';
}
if ( is_category() ) {
$thisCat = get_category(get_query_var('cat'), false);
if ($thisCat->parent != 0) echo get_category_parents($thisCat->parent, TRUE, ' ' . $delimiter . ' ');
echo $before . single_cat_title('', false) . $after;
} elseif ( is_search() ) {
echo $before . $search_result_text.' "' . get_search_query() . '"' . $after;
} elseif ( is_day() ) {
echo '<a href="' . esc_url( get_year_link( get_the_time('Y') ) ) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' ';
echo '<a href="' . esc_url( get_month_link( get_the_time('Y'), get_the_time('m')) ) . '">' . get_the_time('F') . '</a> ' . $delimiter . ' ';
echo $before . get_the_time('d') . $after;
} elseif ( is_month() ) {
echo '<a href="' . esc_url( get_year_link( get_the_time('Y') ) ) . '">' . get_the_time('Y') . '</a> ' . $delimiter . ' ';
echo $before . get_the_time('F') . $after;
} elseif ( is_year() ) {
echo $before . get_the_time('Y') . $after;
} elseif ( is_single() && !is_attachment() ) {
if ( get_post_type() != 'post' ) {
$post_type = get_post_type_object(get_post_type());
$slug = $post_type->rewrite;
echo '<a href="' . $homeLink . '/' . $slug['slug'] . '/">' . $post_type->labels->singular_name . '</a>';
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} else {
$cat = get_the_category();
if( $cat ){
$cat = $cat[0];
$cats = get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
if ($showCurrent == 0) $cats = preg_replace("#^(.+)\s$delimiter\s$#", "$1", $cats);
echo $cats;
}
if ($showCurrent == 1) echo $before . get_the_title() . $after;
}
} elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) {
$post_type = get_post_type_object(get_post_type());
echo $before . $post_type->labels->singular_name . $after;
} elseif ( is_attachment() ) {
$parent = get_post($post->post_parent);
$cat = get_the_category($parent->ID);
if( $cat ){
$cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
}
echo '<a href="' . esc_url( get_permalink($parent) ) . '">' . $parent->post_title . '</a>';
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} elseif ( is_page() && !$post->post_parent ) {
if ($showCurrent == 1) echo $before . get_the_title() . $after;
} elseif ( is_page() && $post->post_parent ) {
$parent_id = $post->post_parent;
$breadcrumbs = array();
while ($parent_id) {
$page = get_post($parent_id);
$breadcrumbs[] = '<a href="' . esc_url( get_permalink($page->ID) ). '">' . get_the_title($page->ID) . '</a>';
$parent_id = $page->post_parent;
}
$breadcrumbs = array_reverse($breadcrumbs);
for ($i = 0; $i < count($breadcrumbs); $i++) {
echo $breadcrumbs[$i];
if ($i != count($breadcrumbs)-1) echo ' ' . $delimiter . ' ';
}
if ($showCurrent == 1) echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} elseif ( is_tag() ) {
echo $before . __( 'Posts tagged', 'supernews' ).' "' . single_tag_title('', false) . '"' . $after;
} elseif ( is_author() ) {
global $author;
$userdata = get_userdata($author);
echo $before . __( 'Author', 'supernews' ).': ' . $userdata->display_name . $after;
} elseif ( is_404() ) {
echo $before . __( 'Error 404', 'supernews' ) . $after;
}
else {
}
if ( get_query_var('paged') ) {
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ' (';
echo __('Page' , 'supernews') . ' ' . get_query_var('paged');
if ( is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author() ) echo ')';
}
echo '</div></div>';
}
}
endif;