我们的网站 (http://www.litepanels.com/news/) 上有一个 Wordpress 新闻博客,它与静态 html 网站的其余部分是分开的。我只想获取最新的故事(精选帖子)并将其显示在我们的主页上。博客和我们的网站在同一台服务器上。我发现我可以抓住这样的帖子标题:
<?php
require('../news/wp-blog-header.php');
?>
<?php query_posts('showposts=3'); ?>
<?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a><br />
<?php endwhile;?>
但我不太了解 PHP,如何仅获取精选帖子(如您在上面的链接中看到的标题、图像和文本)
我在这里测试它:http ://www.litepanels.com/newwebsite/blog_test2.php