0

这是我的标签菜单,用户可以在其中选择标签

<div id="slider-menu" class="row">
    <div class="span12">
        <ul class="nav nav-tabs" id="myTab">
            <li class="active"><a href="#home">Latest events</a><div class="triangle"></div></li>
            <li><a href="#profile">Our champions</a></li>
            <li><a href="#messages">We have puppies!</a></li>
        </ul>
    </div>
</div>

还有我的标签,页面加载时在其中加载内容

    <div class="tab-content">
        <div class="tab-pane active" id="home">
            <img src="<?php bloginfo('template_url'); ?>/img/slider.png" />
            <div class="span12">
                <?php 
                 query_posts('cat=7');
                    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                    <h3><a href="<?php the_permalink() ?>" rel="bookmark" title=""><?php the_title(); ?></a></h3>
                    <?php the_content(); ?>
                    <?php endwhile; else: ?>
                    <p>Sorry, no posts matched your criteria.</p>
                    <?php endif; ?>
            </div>
        </div>
        <div class="tab-pane" id="profile">
            <img src="<?php bloginfo('template_url'); ?>/img/slider.png" />
            <div class="span12">
                <?php 
                 query_posts('cat=8');
                    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                    <h3><a href="<?php the_permalink() ?>" rel="bookmark" title=""><?php the_title(); ?></a></h3>
                    <?php the_content(); ?>
                    <?php endwhile; else: ?>
                    <p>Sorry, no posts matched your criteria.</p>
                    <?php endif; ?>
            </div>
        </div>
        <div class="tab-pane" id="messages">
            <img src="<?php bloginfo('template_url'); ?>/img/slider.png" />
            <div class="span12">
                <?php 
                 query_posts('cat=9');
                    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
                    <h3><a href="<?php the_permalink() ?>" rel="bookmark" title=""><?php the_title(); ?></a></h3>
                    <?php the_content(); ?>
                    <?php endwhile; else: ?>
                    <p>Sorry, no posts matched your criteria.</p>
                    <?php endif; ?>
            </div>
        </div>
     </div>

当有很多帖子时,页面加载时间会太长,所以我的基本想法是在页面加载时将所有帖子加载到第一个选项卡,并在用户选择时将帖子加载到另一个选项卡。

当用户单击特定选项卡时,我很难将 wp 帖子循环和 ajax 结合起来加载帖子。

提前谢谢你的帮助。

4

1 回答 1

0
$.ajaxSetup({cache:false});
$('#myTab li').click(function(){
    var cat_id = $(this).children().attr('rel');
    $.get('location.href' + cat_id, function(data) {
    $('#' + cat_id).html(data);
return false;
});

因此,我将类别 ID 输出到锚 rel 属性,然后添加单击事件处理程序,在其中调用 .get 函数。毕竟,我输出数据。

于 2013-07-14T17:01:39.413 回答