在Wordpress上加载AJAX页面

时间:2015-03-19 11:57:48

标签: php jquery ajax wordpress plugins

我试图安装" Advanced AJAX Page Loader"我的Wordpress网站上的插件。主题安装说明"确保您的主题内容区域包含在标签中,例如DIV,其id属性称为" content""。

我的主题在page.php文件中看起来像我的内容的变量div包装:

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        <div id="page-<?php the_ID(); ?>" class="type-page" itemscope itemtype="http://schema.org/Article">

        <!-- page-title -->
        <?php if($themify->page_title != "yes"): ?>
            <h1 class="page-title" itemprop="name"><?php the_title(); ?></h1>
        <?php endif; ?>
        <!-- /page-title -->

        <div class="page-content entry-content" itemprop="articleBody">

            <?php the_content(); ?>

我的问题是,看起来我正在查看正确的代码部分,即

如果是这样,我如何识别相应的div包装器,它看起来像是基于页面ID的变量:?

1 个答案:

答案 0 :(得分:0)

说明要求您将内容区域包含在ID为“content”的div中。您上面的代码没有;

<div id="content">
    // content here
 </div>