Código PHP:
<?php
error_reporting(0);
require('wp-blog-header.php');
?>
<?php echo qtrans_generateLanguageSelectCode('both'); ?>
<?php
// The Query
$the_query = new WP_Query('page_id=1130');
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo '<li>';
the_title();
the_content();
echo '</li>';
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
Código PHP:
error_reporting(0);
Código HTML:
Warning: Cannot modify header information - headers already sent by (output started at /www/archivo_externo.php:9) in /www/wp-content/plugins/qtranslate/qtranslate_core.php on line 71
Gracias!