我花了几个小时阅读和尝试教程。我似乎找不到可行的解决方案,而且我知道它应该很容易,但我在 AJAX 方面遇到了困难。:(
我想从 div 中的链接加载 Post 内容。下面是我所拥有的。有人可以帮我处理 JavaScript 方面的问题吗?谢谢!
<ul>
<?php query_posts('post_type=artwork&posts_per_page=-1'); ?>
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<li class="mytab">
<span>
<h3><?php the_title(); ?></h3>
<a href="#"><?php the_post_thumbnail('Project'); ?></a>
</span>
</li>
<?php endwhile; endif; wp_reset_query(); ?>
</ul>
<div id="loadAjaxHere"></div>
我想在 div #loadAjaxHere 中加载这段代码
<div class="myArtwork">
<h2><?php the_title(); ?></h2>
<div class="text"><?php the_content(); ?></div>
</div>
感谢您的帮助!!