By the way… I would like to use your tiles in this page
https://www.afnews.info/wordpress/redazione/prossimi-articoli/
Do you think it is possible? The code is the following – what should I change? Thanks! .-)
<?php // Template Name: nextNews
get_header(); ?>
<!–include sidebar–>
<?php get_sidebar(); ?>
<div id=”content”>
<!–index.php–>
<!–the loop–>
<center><b>Prossimi articoli in arrivo</b>
<img src=”https://www.afnews.info/ban/frecciabasso.jpg”>
<font size=2><b>
<?php $pq = ‘post_status=future&order=ASC&showposts=30’;
$prox = new WP_Query($pq);
if ($prox->have_posts()) { ?>
<hr>
<?php while ($prox->have_posts()) : $prox->the_post();
$unico = $post->ID;
?>
<?php the_time(‘j F Y’); ?> – <?php the_title(); ?>
<?php if ( function_exists( ‘get_the_image’ ) ) get_the_image( array( ‘default_image’ => ‘https://www.fumetti.org/goria/babs/af150.gif’, ‘size’ => ‘medium’ ) ); ?>
<hr>
<?php endwhile; ?>
<?php } ?>
</b></font></center>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
etc..