网站的布局方式是这样的(只是为了让你得到一个表示)
----------------------------------
| Name of the Work |
----------------------------------
| Our Work | the content |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
-----------------------------------
现在,作品的名称和内容都可以正常使用,但是我的侧边栏(“我们的作品”)不起作用。我的意思是,sidebar.php 确实显示,但 the_title 列表只显示我所在页面的标题。
例如,如果我在 ProjectA 上,那么在“我们的工作”下它只会显示 ProjectA。ProjectB、ProjectC 等也是如此。
我目前使用的代码是这样的:
<?php if (have_posts()):; ?>
<?php while (have_posts()) : the_post(); ?>
<ul>
<a href="<?php the_permalink(); ?>"><li><?php the_title(); ?></li></a>
<ul>
<?php endwhile; ?>
我使用了 query_posts('posts_per_page=x'); 但最终发生的是 the_content 显示了我不想要的其他帖子的 the_content !