- Desde
- 3 Jun 2013
- Mensajes
- 275
Buenas! Tengo este código para mostrar las entradas editadas, pero me gustaría excluir una categoría, alguien sabe que tengo que añadir? :ambivalence:
Insertar CODE, HTML o PHP:
<?php
$today = current_time('mysql', 1);
$howMany = 11; //Número de entradas que quieres mostrar
if ( $recentposts = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_modified_gmt < '$today' AND post_type = 'post' ORDER BY post_modified_gmt DESC LIMIT $howMany")):
?>
<ul>
<?php
foreach ($recentposts as $post) {
if ($post->post_title == '') $post->post_title = sprintf(__('Post #%s'), $post->ID);
echo "<li style='padding: 5px;'><a href='".get_permalink($post->ID)."'>";
the_title();
echo '</a></li>';
}
?>
</ul>
<?php endif; ?>
</ul>