我创建了一个WordPress Widget来获取最近的帖子,首先获得特定数量的帖子, 然后有一个按钮可以通过AJAX获得更多帖子。
完整的Widget代码
/* recent posts Widget
================================*/
class recent_posts extends WP_Widget {
public function __construct() {
// widget actual processes
parent::__construct(
'recent_posts', // Base ID
'recent posts', // Name
array( 'description' => __( 'Show the recent posts', 'foo'))
// Args
);
add_action('wp_ajax_ajaxloadMore', array($this,'ajaxloadMore'));
add_action('wp_ajax_nopriv_ajaxloadMore', array($this,'ajaxloadMore'));
}
// i remove form and update functions to reduce the code :)
public function widget( $args, $instance ) {
extract( $args );
$title = $instance['title'];
$number = $instance['num'];
// function for filter posts list where first post is the current post
if(is_single()){
function filter_where( $where = ''){
$where .= " AND post_date <= '" .get_the_date('Y-m-d H:i:s'). "'";
return $where;
}
add_filter( 'posts_where', 'filter_where' );
}
//select the current category ID
$category = get_the_category($post->ID);
$catid = $category[0]->cat_ID;
query_posts('cat='.$catid.'&showposts='.$number.'');
echo $before_widget;
echo $before_title .$title.$after_title;
echo '<ul class="recent_posts">';
while(have_posts()) : the_post();
echo '<li><a href="'.get_permalink().'">'.get_the_title().'</a></li><br>';
endwhile;
wp_reset_query();
echo '</ul>';
echo '<br><input type="button" id="loadMoreW" value="Load More" data-offset="'.$number.'">';
echo $after_widget;
}
// the ajax function
public function ajaxloadMore(){
// first need to get $catid and $number values from function widget
// second need to declare filter_where function to filter the query_posts here
query_posts('cat='.$catid.'&showposts='.$number.'&offset='.$_POST['offset'].'');
while(have_posts()) : the_post();
echo '<li><a href="'.get_permalink().'">'.get_the_title().'</a></li><br>';
endwhile;
wp_reset_query();
die();
}
}
这是获取ajaxloadMore
函数输出并附加到ul
标记
$('#loadMoreW').on('click',function(){
$.ajax({
url: 'wp-admin/admin-ajax.php',
type: 'POST',
data: {
action : 'ajaxloadMore',
offset: $('#loadMoreW').data('offset')
},
success: function(data){
$('#loadMoreW').data('offset', $('#loadMoreW').data('offset')+4);
$(data).appendTo('.recent_posts');
}
});
});
如何从功能窗口小部件中获取$catid
和$number
个变量并将它们放入ajaxloadMore
函数中?
如何使用相同的函数query_posts
过滤ajaxloadMore
函数中的filter_where
,如函数小部件?
答案 0 :(得分:2)
这两个问题都有相同的答案,使用与data-offset
中相同的方法:
echo '<br><input type="button" id="loadMoreW" value="Load More" data-offset="'
. $number
. '" data-catid="'
. $catid
. '" data-where="'
. get_the_date('Y-m-d H:i:s').'">';
然后
$.ajax({
url: '{$ajax_url}',
type: 'POST',
data: {
action : 'ajaxloadMore',
offset: $('#loadMoreW').data('offset') ,
catid: $('#loadMoreW').data('catid') ,
where: $('#loadMoreW').data('where')
},
最后在$_POST['catid']
函数中使用$_POST['where']
和ajaxloadMore()
。
我使用$ajax_url
构建了$ajax_url = admin_url('admin-ajax.php');
。
但是,尽管如此,尝试在WordPress中使用AJAX,如this和don't use query_posts
。