如何加载Wordpress分类列表和发布Ajax onclick

时间:2015-12-14 09:27:45

标签: wordpress wordpress-theming

很抱歉很长时间阅读...

我希望你们能帮助我。我试图显示一个分类法列表,该列表将在与主帖子页面相同的帖子中加载该分类法的内容。

我一直在查看此网站上的脚本(How to load Wordpress Post with Ajax onclick)。

使用Javascript:

jQuery.noConflict();
jQuery(document).ready(function($){
    $.ajaxSetup({cache:false});
    $("a.ajax").click(function(){
        var post_url = $(this).attr("href");
        var post_id = $(this).attr("rel");
        $("#tabs").html('<div class="loading">loading...</div>');
    $("#tabs").load(post_url);
    return false;
    });
});

我要显示帖子内容的页面(我使用的是名为“艺术品”的自定义帖子类型:

<ul class="container">
  <?php query_posts('post_type=artwork&posts_per_page=-1'); ?>
  <?php if(have_posts()) : while(have_posts()) : the_post(); ?>
  <li class="mytab">
    <h3><?php the_title(); ?></h3>
    <a href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>" class="ajax"><?php the_post_thumbnail('Project'); ?></a>
  </li>
  <?php endwhile; endif; wp_reset_query(); ?>
</ul>

<!-- LOAD SINGLE POST CONTENT IN #TABS -->
<div id="tabs"></div>

单个帖子“single-artwork.php”。注意:不要使用get_header或get_footer等:

<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
  <div class="tabcontent" id="tab-<?php the_ID(); ?>">
    <?php the_content(); ?>
  </div>
<?php endwhile; endif; ?>

我没有使用脚本的最后一部分,因为我已经在单{slug} .php

中工作了

这实际上在同一窗口中打开分类内容,就像我想要的那样。但是这会将缩略图显示为链接。

我真正想要的只是拥有分类列表,然后打开以显示#tabs div中的内容。

到目前为止我得到了这个:

<a href="<?php the_permalink(); ?>" rel="<?php the_ID(); ?>" class="ajax"><?php echo get_the_term_list( $post->ID, 'inclusief'); ?></a>

显示了我想要的分类列表。但这会在新页面上打开该分类法的内容,而不是#tabs。这是做什么的?为什么?当然,我怎样才能在#tabs div中打开这个分类内容......

谢谢!

1 个答案:

答案 0 :(得分:0)

好吧,我使用自定义get_terms_list函数修复了它。问题是class =“ajax”没有给出链接。通过创建一个自定义函数,确实为链接提供了ajax类。帖子在#tabs div中打开。

function get_the_term_list_custom( $id, $taxonomy, $before = '', $sep = '', $after = '' ) {
$terms = get_the_terms( $id, $taxonomy );

if ( is_wp_error( $terms ) )
    return $terms;

if ( empty( $terms ) )
    return false;

$links = array();

foreach ( $terms as $term ) {
    $link = get_term_link( $term, $taxonomy );
    if ( is_wp_error( $link ) ) {
        return $link;
    }
    $links[] = '<a class="ajax" href="' . esc_url( $link ) . '" rel="tag">' . $term->name . '</a>';
}

/**
 * Filter the term links for a given taxonomy.
 *
 * The dynamic portion of the filter name, `$taxonomy`, refers
 * to the taxonomy slug.
 *
 * @since 2.5.0
 *
 * @param array $links An array of term links.
 */
$term_links = apply_filters( "term_links-$taxonomy", $links );

return $before . join( $sep, $term_links ) . $after;

}

就是这样......我很高兴!