我的wordpress帖子结构就像这样
From nd mobiles. Get the best theme mockups on the market.
<!--more-->
Investigationes demonstraverunt<strong> lectores legere</strong>
me lius quod ii legunt saepius. Claritas est
我在主页上的“更多”标记之前显示帖子内容, 并尝试通过ajax单独加载“更多”内容, 我写了一些代码,但它恢复了完整的帖子, 但我只需要在“更多”标签的一部分后返回
前
Investigationes demonstraverunt<strong> lectores legere</strong>
me lius quod ii legunt saepius. Claritas est
只有这一部分我通过ajax获取内容的代码是
<div id="single-post post-<?php the_ID(); ?>">
<?php while (have_posts()) : the_post(); ?>
<?php the_content();?>
<?php endwhile;?>
</div>
这个完整的帖子任何人都知道如何只获得“更多”标签后的内容 谢谢