@Linux; işlem yapacağın dosyana wp-load.php'yi dahil edip aşağıdaki kod ile son yazıları alabilirsin.

<?php
	
	require("wp-load.php");
	
	query_posts("showposts=10");
	
	while(have_posts()): the_post();
		
		printf("<a href=\"%s\" title=\"\">%s</a>", get_the_permalink(), get_the_title(), get_the_title());
		
	endwhile;