Inserire articolo non trovato se in una categoria non ci sono articoli
-
Sempre nel solito loop devo inserire questo:
echo wpautop('ops... non ho trovato articoli!');
<!-- RIASSUNTI ARTICOLI --> <div class="container pb-1 rounded-lg"> <div class="card-columns rounded-lg"> <?php if (is_category()) { $posts = query_posts( $query_string . '&orderby=title&order=asc' ); } ?> <?php while(have_posts()){ the_post(); ?> <div class="card p-1"> <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail( 'full', array( 'class' => 'img-fluid', 'card-img-top') ); ?></a> <div class="card-body"> <h3 class="text-monospace font-italic alert alert-danger"><center><a href="<?php the_permalink(); ?>" class="alert-link text-danger"><?php echo the_title(); ?></a></center></h3> <h6 class="text-justify text-monospace font-italic"><a href="<?php the_permalink(); ?>"><?php echo the_excerpt(); ?></a></h6> <ul class="list-group list-group-flush alert-link"> <h8 class="text-justify font-italic text-primary"><?php $taxonomy = 'category'; $post_terms = wp_get_object_terms( $post->ID, $taxonomy, array( 'fields' => 'ids' ) ); $separator = ', '; if ( ! empty( $post_terms ) && ! is_wp_error( $post_terms ) ) { $term_ids = implode( ',' , $post_terms ); $terms = wp_list_categories( array( 'title_li' => '', 'style' => 'none', 'echo' => false, 'taxonomy' => $taxonomy, 'include' => $term_ids, 'child_of' => 17, 'exclude' => 17 ) ); $terms = rtrim( trim( str_replace( '<br />', $separator, $terms ) ), $separator ); echo $terms; } ?></h8></ul> <br /> </div> <div class="card-footer" style="opacity: 0.6;"> <p class="card-text"><small class="text-muted">Last updated: <strong><?php echo the_time('d/m/Y'); ?></strong></small></p> </div> </div> <?php } ?> </div>
Stai visualizzando 3 risposte - dal 1 al 3 (di 3 totali)
Stai visualizzando 3 risposte - dal 1 al 3 (di 3 totali)
- Il topic ‘Inserire articolo non trovato se in una categoria non ci sono articoli’ è chiuso a nuove risposte.