codice:
<?php $result = mysql_query("SELECT * FROM wp_posts WHERE post_type='post' AND post_status='publish' ORDER BY post_title ASC");
while($row = mysql_fetch_array( $result )) { ?>
<?php
echo $row['post_title'];
?> <?php } ?>