Wordpress仅在使用ajax

时间:2016-02-27 04:21:25

标签: php ajax wordpress wordpress-theming

我的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>

这个完整的帖子任何人都知道如何只获得“更多”标签后的内容 谢谢

0 个答案:

没有答案