在博客之外获取wordpress最新帖子

时间:2012-08-15 22:02:32

标签: php 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; ?>

1 个答案:

答案 0 :(得分:0)

wp-config文件仅存储这些变量以供在其他脚本中使用。它没有定义任何wordpress函数。我相信你要找的东西会是这样的。

    define('WP_USE_THEMES', false);
  require('/server/path/to/your/wordpress/site/htdocs/blog/wp-blog-header.php');

之后,您应该能够使用wordpress功能。