' . esc_html__( '%1$s', 'bellini' ) . '', $categories_list ); // WPCS: XSS OK. } } } /** * Prints HTML with meta information for the Tags */ function bellini_post_tag() { // Hide category and tag text for pages. if ( 'post' === get_post_type() ) { /* translators: used between list items, there is a space after the comma */ $tags_list = get_the_tag_list( '', esc_html__( ',', 'bellini' ) ); if ( $tags_list ) { printf( '' . esc_html__( '%1$s', 'bellini' ) . '', $tags_list ); // WPCS: XSS OK. } } } /** * Prints Post published date */ function bellini_published_on() { ?> '; comments_popup_link( esc_html__( 'Leave a comment', 'bellini' ), esc_html__( '1 Comment', 'bellini' ), esc_html__( '% Comments', 'bellini' ) ); echo ''; } } /** * Prints HTML with meta information for the current post-date/time and author. */ function bellini_post_author() { ?> "', '"', false )),'',''); } /** * Returns true if a blog has more than 1 category. * * @return bool */ function bellini_categorized_blog() { if ( false === ( $all_the_cool_cats = get_transient( 'bellini_categories' ) ) ) { // Create an array of all the categories that are attached to posts. $all_the_cool_cats = get_categories( array( 'fields' => 'ids', 'hide_empty' => 1, // We only need to know if there is more than one category. 'number' => 2, ) ); // Count the number of categories that are attached to the posts. $all_the_cool_cats = count( $all_the_cool_cats ); set_transient( 'bellini_categories', $all_the_cool_cats ); } if ( $all_the_cool_cats > 1 ) { // This blog has more than 1 category so bellini_categorized_blog should return true. return true; } else { // This blog has only 1 category so bellini_categorized_blog should return false. return false; } } /** * Flush out the transients used in bellini_categorized_blog. */ add_action( 'edit_category', 'bellini_category_transient_flusher' ); add_action( 'save_post', 'bellini_category_transient_flusher' ); function bellini_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'bellini_categories' ); } /** * If it doesn't have a featured image, set a default image as Post thumbnail */ function bellini_post_thumbnail(){ global $bellini; if ( has_post_thumbnail() ) { $meta = wp_get_attachment_metadata( get_post_thumbnail_id( get_the_ID() ) ); $width = $meta['width']; $height = $meta['height']; ?>
'img-respponsive blog__post__image'));?>
<?php the_title(); ?> '; next_posts_link('Next Page', 0); previous_posts_link('Previous Page', 0); echo ''; endif; if($bellini['bellini_blog_pagination_type'] == 2): // Numeric Pagination echo '
'; the_posts_pagination(); echo '
'; endif; if($bellini['bellini_blog_pagination_type'] == 3): // Display Pagination using WP-PageNavi Plugin if ( function_exists('wp_pagenavi') ){ wp_pagenavi(); } endif; } endif; /** * Prints Out Breadcrumbs */ if ( ! function_exists( 'bellini_breadcrumb_integration' ) ) : function bellini_breadcrumb_integration() { global $bellini; if($bellini['bellini_show_page_breadcrumb'] == true) : // Breadcrumb NavXT if($bellini['bellini_page_breadcrumb_type'] === 1): if( function_exists('bcn_display') ) : ?> ',''); endif; endif; // WooCommerce Breadcrumb if($bellini['bellini_page_breadcrumb_type'] === 3): if( function_exists('woocommerce_breadcrumb') ) : woocommerce_breadcrumb(); endif; endif; endif; } endif; /** * Prints Out Single Post thumbnail with Schema */ function bellini_single_post_thumbnail(){ if ( has_post_thumbnail() ) : ?>
'img-responsive single-post__featured-image'));?>
'; return $class; endif; if ($bellini['bellini_footer_widget_column_selector'] === 2): $class = '
'; return $class; endif; if ($bellini['bellini_footer_widget_column_selector'] === 3): $class = '
'; return $class; endif; if ($bellini['bellini_footer_widget_column_selector'] === 4): $class = '
'; return $class; endif; }