首页 > 解决方案 > 在wordpress中过滤类别ajax

问题描述

我正在尝试在首页上使用 ajax 制作自定义类别过滤器。当我单击任何自定义分类时,内容消失并且我没有得到任何内容。自定义帖子类型是aranzman

这是页面-usluge.php

 <ul class="categories-filters"> 
 <?php $args= array( 
'show_option_all' => 'All posts', //Text for button All 
'title_li' => __(''), 
'taxonomy' => 'vrsta-aranzmana', 
'post_type' => 'aranzman' ); 

wp_list_categories( $args ); ?> </ul> 

<?php $query = new WP_query ( $args ); 

if ( $query->have_posts() ) { ?> 

<div id="main-content" class="row"> 
<div id="inside"> 
<div class="container"> 
<?php while ( $query->have_posts() ) : $query->the_post(); ?> 
<article>
<a class="xiong-articlebox" href="<?php the_permalink();?>"> 
<header> 
<h3><?php the_title( );?></h3> <p><em><?php the_date( 'j.n.Y'); ?> </em></p> </header> 
<p><?php the_excerpt();?></p> </a> </article> 
<?php endwhile; }?> 
</div><!-- container--> 
</div><!--inside --> 
</div> <!--row -->

这是ajax.js

jQuery(function(){ 
var mainContent = jQuery('#main-content'), 
cat_links = jQuery('ul.categories-filters li a'); 

cat_links.on('click', function(e){ 
 e.preventDefault(); 
 el = jQuery(this); 
 var value = el.attr("href"); 
 mainContent.animate({opacity:"0.5"});
 mainContent.load(value + " #inside", function(){
 mainContent.animate({opacity:"1"}); 
  }); 
 }); 
});

这是调用 ajax.js的functions.php

function ajax_theme_scripts() {

 //Ajax filter scripts     
 wp_register_script( 'ajax',  get_stylesheet_directory_uri() . '/js/ajax.js', array( 'jquery' ), '1.0.0', true );
 wp_enqueue_script( 'ajax' );
}

add_action( 'wp_enqueue_scripts', 'ajax_theme_scripts' );

“不”工作的演示或示例在此链接上

演示

标签: javascriptphpjqueryajaxwordpress

解决方案


这是 ajax.js

jQuery(document).ready(function($) {
$('ul.categories-filters li a').on('click', function(event) {
    event.stopPropagation();
    event.preventDefault();

    $.ajax({
        method: "POST",
        url: Object_var.ajax_url_attr,
        dataType: "JSON",
        data: {
            action: "myfilter_action",
            // I think you are using the href to check filter
            filter_req: $(this).attr('href')
        },
        success: function(response) {
            if(typeof response != "undefined")
                $('#inside .container').html(response.html_text);
        }
    });
});
});

这是function.php

<?php
add_action('wp_enqueue_scripts', function(){
// Register first the ajax.js script
wp_enqueue_script('handle_of_script', 'link/to/ajax.js');

// Now send variable to the script
wp_localize_script('handle_of_script', "Object_var", [
    "ajax_url_attr" => admin_url( 'admin-ajax.php' )
]);
});

add_action("wp_ajax_nopriv_myfilter_action", function(){
$filter_req = $_POST['filter_req'];

// Run filter of whatever
$query_result = your_filter();

// Convert values to html/text
$html_text = convert_to_html_text($query_result);

// Send data to jQuery AJAX
wp_send_json(
    "html_text" => $html_text
);

wp_exit();
});

function convert_to_html_text($query) {
$html = "";

ob_start();
    // Maybe check if query is valid or have post ...
?>
    <?php while ( $query->have_posts() ): $query->the_post(); ?> 
        <article>
            <a class="xiong-articlebox" href="<?php the_permalink(); ?>"> 
                <header> 
                    <h3><?php the_title(); ?></h3>
                    <p>
                        <em><?php the_date( 'j.n.Y'); ?></em>
                    </p>
                </header> 
                <p><?php the_excerpt();?></p>
            </a>
        </article> 
    <?php endwhile;?>
<?
$html_text = ob_get_contents();

return $html;
}

我认为这会有所帮助!


推荐阅读