Anche se ci sono 2 news in evidenza, mostra le 2 news e nuovamente le stesse 2 news. Analizzando il codice ed estendendo il codice su un tema child, abbiamo risolto cosi:
<?php
/*
SEZIONE ULTIME NOTIZIE
Mostra gli ultimi N articoli caricati.
Il numero è preso dall'optione "dettagli-num-articoli" editabile dalla pagina "Dettagli" del backend
*/
?>
0) {
// Primo loop con sticky posts
$args = array(
'posts_per_page' => $sticky,
'post__in' => get_option('sticky_posts'),
);
$do_not_duplicate = array();
$query = new WP_Query($args);
while ($query->have_posts()) : $query->the_post();
$x++;
$do_not_duplicate[] = $post->ID;
$img_url = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'news-image');
if ($img_url != "") {
$img_url = $img_url[0];
} else if (get_theme_mod('active_immagine_evidenza_default')) {
$img_url = esc_url(get_theme_mod('immagine_evidenza_default'));
if ($img_url == "") {
$img_url = esc_url(get_template_directory_uri()) . "/images/400x220.png";
}
}
$category = get_the_category();
$posttags = get_the_tags();
$datapost = get_the_date('j F Y', '', ''); ?>
Anche se ci sono 2 news in evidenza, mostra le 2 news e nuovamente le stesse 2 news. Analizzando il codice ed estendendo il codice su un tema child, abbiamo risolto cosi:
<?php /*
SEZIONE ULTIME NOTIZIE
*/ ?>