Veidamo come visualizzare un post WordPress in una pagina esterna.
require('tuo_percorso_wordpress/wp-load.php'); global $query_string; $qstring_array = array(); parse_str($query_string, $qstring_array); $args = array_merge($args,$qstring_array); query_posts($args) ; if (have_posts()) : while (have_posts()) : the_post(); echo "Titolo :"; the_title(); echo ""; echo "Autore: "; the_author(); echo " "; endwhile; else: echo "Nessun post da visualizzare"; endif;