Brak wpisów w tej kategorii.
’; wp_reset_postdata(); return ob_get_clean(); } $i = 0; $show_featured = ( '1′ === $a[’featured’] && 1 === $paged ); echo ’’;
while ( $q->have_posts() ) {
$q->the_post();
$i++;
$cat_list = get_the_category();
$cat_name = ! empty( $cat_list ) ? $cat_list[0]->name : 'Blog’;
$excerpt = wp_trim_words( get_the_excerpt(), 30, '…’ );
$mins = inve_reading_time( get_the_content() );
// ———- WPIS WYRÓŻNIONY (pierwszy, tylko na 1. stronie) ———-
if ( $show_featured && 1 === $i ) {
?>
Wpis wyróżniony ·
Czytaj dalej →
’; // .inve-grid
// ———- PAGINACJA ———-
$links = paginate_links( array(
'total’ => $q->max_num_pages,
'current’ => $paged,
'prev_text’ => '←’,
'next_text’ => '→’,
'type’ => 'array’,
) );
if ( $links ) {
echo ’’;
}
echo ’
’; // .inve-grid-wrap
wp_reset_postdata();
return ob_get_clean();
}
add_shortcode( 'inve_blog’, 'inve_blog_shortcode’ );
/**
* Szacowany czas czytania (200 słów/min).
*/
function inve_reading_time( $content ) {
$words = str_word_count( wp_strip_all_tags( $content ) );
return max( 1, (int) ceil( $words / 200 ) );
}
/**
* Style — wypisywane raz na stronę.
*/
function inve_blog_styles() {
static $done = false;
if ( $done ) { return; }
$done = true;
?>