' . 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( '', $tags_list ); // WPCS: XSS OK. } } } function bellini_published_on() { $time_string = ''; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = ' '; } $time_string = sprintf( $time_string, esc_attr( get_the_date( 'c' ) ), esc_html( get_the_date() ), esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $posted_on = sprintf( esc_html_x( '%s', 'post date', 'bellini' ), '' . $time_string . '' ); echo ''; } function bellini_comment_count(){ if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) { echo ''; 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() { $byline = sprintf( esc_html_x( 'by %s', 'post author', 'bellini' ), '' ); echo '
'; } if ( ! function_exists( 'bellini_entry_footer' ) ) : /** * Prints HTML with meta information for the categories, tags and comments. */ function bellini_edit_content() { edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'bellini' ), the_title( '"', '"', false ) ), '', '' ); } endif; /** * 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. */ function bellini_category_transient_flusher() { if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } // Like, beat it. Dig? delete_transient( 'bellini_categories' ); } add_action( 'edit_category', 'bellini_category_transient_flusher' ); add_action( 'save_post', 'bellini_category_transient_flusher' ); function bellini_post_thumbnail(){ if ( has_post_thumbnail() ) { the_post_thumbnail('bellini-thumb', array('class' => 'img-respponsive blog__post__image', 'itemprop' => 'image')); }else{?>
max_num_pages < 2 ) {
return;
}
$paged = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1;
$pagenum_link = html_entity_decode( get_pagenum_link() );
$query_args = array();
$url_parts = explode( '?', $pagenum_link );
if ( isset( $url_parts[1] ) ) {
wp_parse_str( $url_parts[1], $query_args );
}
$pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link );
$pagenum_link = trailingslashit( $pagenum_link ) . '%_%';
$format = $GLOBALS['wp_rewrite']->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : '';
$format .= $GLOBALS['wp_rewrite']->using_permalinks() ? user_trailingslashit( 'page/%#%', 'paged' ) : '?paged=%#%';
// Set up paginated links.
$links = paginate_links( array(
'base' => $pagenum_link,
'format' => $format,
'total' => $GLOBALS['wp_query']->max_num_pages,
'current' => $paged,
'mid_size' => 3,
'add_args' => array_map( 'urlencode', $query_args ),
'prev_text' => __( '← Previous', 'bellini' ),
'next_text' => __( 'Next →', 'bellini' ),
'type' => 'list',
) );
if ( $links ) :?>