我已经编写了该代码以循环浏览最近的6篇帖子,并在标题下方的最新消息框中显示它们的标题。该帖子显示正常,但无法点击进入帖子。 继承人的代码loop语句在最新消息框中显示最新帖子
<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>
太好了。但问题是,现在它们显示为蓝色并且被强调。我希望文本是黑色的而不是下划线 –
' Nemoden
FTL的内嵌样式。 –