-3

可能重复:
Wordpress 数组显示来自特定类别的帖子并显示帖子摘录和特色

大家好,在编写 WP 主题的过程中。我在主页上有一个滑块来显示“新闻”类别中的最新帖子。我已经研究了如何在来自猫的滑块中显示帖子,但我不知道如何包含帖子特征图像,除了. 有人可以请教。

这是我正在进行的 WP 网站。这是“最新消息”滑块。

http://www.garyrevell.co.uk/student-i-wp/

谢谢你

4

1 回答 1

0

您可以通过将这段代码包含在您希望图像出现的位置的循环中来添加特色图像:

<?php if ( has_post_thumbnail()) : ?><?php the_post_thumbnail(); ?><?php endif; ?>

您可以通过将the_content()函数替换为the_exerpt().

假设您的循环中有这段代码:

<?php the_content(); ?>

你将用这个替换它:

<?php the_exerpt(); ?>

除了添加和替换之外,还有更多内容,但我认为这可以帮助您入门。

希望这会有所帮助=]。

您应该将所有内容都放在循环中。

这是一个完整的循环,其中包含标题、缩略图和要在您的部分中使用的内容...

<?php $my_query = new WP_Query('category_name=news&posts_per_page=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>

<h2 id="yourTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<div id="yourImage">
<?php if ( has_post_thumbnail()) : ?><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a>
</div>
<p id="yourContent"><?php the_exerpt(); ?></p>

<?php endwhile;?>

在这里,我们告诉查询显示您的新闻类别帖子并仅显示 1 个帖子('category_name=news&posts_per_page=1')

于 2012-08-27T20:34:32.017 回答