0
我試圖在wordpress以外的靜態頁面上獲得最新的wordpress帖子。我想下面的代碼,但它不工作(即我沒有得到任何輸出)。獲取wordpress博客以外的最新帖子
<?php
$config_file = $_SERVER['DOCUMENT_ROOT'].'/wp/wp-config.php';
include($config_file);
$postlist = get_posts('numberposts=5');
foreach ($postlist as $post) : ?>
<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<?php endforeach; ?>