codice:
SELECT * FROM
	(SELECT * FROM tabella 
	 ORDER BY data_pubblicazione DESC
	 LIMIT 0, 30) AS temp
ORDER BY titolo ASC
?