我在我们网站的首页上放了一个查询帖子,将我自己的帖子从公司博客中删除。它工作正常,但永久链接不起作用,除非页面在加载后刷新。任何帮助理解为什么会非常感激。谢谢!
以下是代码:
<div style="float:left; display:inline; margin-left:385px; margin-top:-225px;">
<?php query_posts('showposts=5&author=4'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div>
<!-- Display the Title as a link to the Post's permalink. -->
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></div>
答案 0 :(得分:1)
尝试结束你的时间。
<?php the_title(); ?></a></div>
<?php endwhile; ?>