我正在 wordpress 中构建一个站点,其中在某个部分有一个包含帖子项目列表的容器(将其视为菜单/侧边栏),以及一个我将加载内容的空白空间。当您单击帖子列表中的一个标题时,该单击标题的内容应该加载到空 div 中。单击标题列表中的另一个标题。
所以它看起来像这样,基本上:
<div class="container">
<ul class="cats">
<?php
$my_query = new WP_Query('showposts=10&cat=4');
while ($my_query -> have_posts()) : $my_query->the_post(); $category = get_the_category();
?>
<li class="trigger">
<h5>
<? the_title(); ?>
</h5>
</li>
<?php
endwhile; wp_reset_query();
?>
</ul>
<div class="the-content">
<? the_content(); ?>
</div>
</div>
所以,我已经为ajax查找了一些东西,但我没有任何经验。最好的方法是什么?