0

我们的网站 (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

4

1 回答 1

0

如果这对你有用,这意味着你已经拥有了所有你需要的东西,除了某种方式来显示你的信息。为此,Wordpress 提供了一些可以在 while 循环中使用的模板标签。the_content是您需要的。其他可以在 Codex 中找到。

于 2013-01-25T03:13:39.543 回答