__( 'AP: Right Sidebar', 'accesspress-store' ),
'id' => 'sidebar-right',
'description' => '',
'before_widget' => '',
'before_title' => '
' . $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 . __('Archive by category','accesspress-store').' "' . single_cat_title('', false) . '"' . $after;
} elseif (is_search()) {
echo $before . __('Search results for','accesspress-store'). '"' . get_search_query() . '"' . $after;
} elseif (is_day()) {
echo '
' . get_the_time('Y') . ' ' . $delimiter . ' ';
echo '
' . get_the_time('F') . ' ' . $delimiter . ' ';
echo $before . get_the_time('d') . $after;
} elseif (is_month()) {
echo '
' . get_the_time('Y') . ' ' . $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 '
' . $post_type->labels->singular_name . '';
if ($showCurrent == 1)
echo ' ' . $delimiter . ' ' . $before . get_the_title() . $after;
} else {
$cat = get_the_category();
$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);
$cat = $cat[0];
echo get_category_parents($cat, TRUE, ' ' . $delimiter . ' ');
echo '
' . $parent->post_title . '';
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_page($parent_id);
$breadcrumbs[] = '
' . get_the_title($page->ID) . '';
$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','accesspress-store').' "' . single_tag_title('', false) . '"' . $after;
} elseif (is_author()) {
global $author;
$userdata = get_userdata($author);
echo $before . __('Articles posted by ','accesspress-store'). $userdata->display_name . $after;
} elseif (is_404()) {
echo $before . 'Error 404' . $after;
}
if (get_query_var('paged')) {
if (is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author())
echo ' (';
echo __('Page', 'accesspress-store') . ' ' . get_query_var('paged');
if (is_category() || is_day() || is_month() || is_year() || is_search() || is_tag() || is_author())
echo ')';
}
echo '
';
}
}
function accesspress_letter_count($content, $limit) {
$striped_content = strip_tags($content);
$striped_content = strip_shortcodes($striped_content);
$limit_content = mb_substr($striped_content, 0 , $limit );
if($limit_content < $content){
$limit_content .= "...";
}
return $limit_content;
}
if( is_woocommerce_activated() ){
function woocommerce_get_product_thumbnail( $size = 'shop_catalog', $placeholder_width = 0, $placeholder_height = 0 ) {
global $post;
if ( has_post_thumbnail() ) {
return get_the_post_thumbnail( $post->ID, $size );
} elseif ( wc_placeholder_img_src() ) {
$placeholder = accesspress_woocommerce_placeholder_img_src();
$alt = get_the_title();
$placeholder_img = '