enlace a post mas reciente excluyendo n categorias en wordpress
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#3
<?php $args = array( 'posts_per_page' => 1, 'category__not_in' => array( 23, 24 ) ); $recent_posts = get_posts( $args ); foreach ( $recent_posts as $recent ) { echo '<a href="' . get_permalink( $recent ) . '">Ultimo post</a>'; } ?>