循环语句显示最新消息框中的最新帖子

时间:2011-07-28 15:30:20

标签: php wordpress

我已编写此代码以循环显示最后6个帖子,并在标题下方的最新新闻框中显示其标题。帖子显得很好,但无法点击进入帖子。 继承人的代码

<div id="freshlyWrapper">
<div id="freshlyposts">
<?php
$freshlyIonised = new WP_Query();
$freshlyIonised->query('category_name=featured&showposts=6');
while($freshlyIonised->have_posts()):
$freshlyIonised->the_post();
?>

<div class="freshlyionisedbox"><h3><?php the_title(); ?><a href="<?php the_permalink() ?>"></a></h3>
</div>

3 个答案:

答案 0 :(得分:2)

修复您的a内部:

<a style='text-decoration: none; color: black;' href="<?php the_permalink() ?>">
  <?php the_title(); ?>
</a>

现在你的头衔不在那些通讯链接

答案 1 :(得分:0)

是的,您需要在标签中设置标题:

<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>

答案 2 :(得分:0)

在永久链接功能后添加分号:

<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>