↧
Answer by Darren Cooney for Ajax Load more CPT via shortcode
You should consider giving the Ajax Load More WordPress plugin a try. https://wordpress.org/plugins/ajax-load-more/
View ArticleAnswer by Cai for Ajax Load more CPT via shortcode
Your first problem is that your AJAX function in functions.php should echo its results, not return. You also need a call to wp_die() at the end. I'm not completely sure what you are trying to do but it...
View ArticleAnswer by TheDeadMedic for Ajax Load more CPT via shortcode
This will (*should) fix your first problem: function rmcc_post_listing_shortcode1( $atts ) { // No need for output buffering - AJAX handlers should ECHO their response // ob_start(); // .. // So long,...
View ArticleAjax Load more CPT via shortcode
I have a problem with ajax load more for my CustomPostType. I think i have mistake but don't know where. If it possible to edit my code, i will happy. UPDATE I have create div cool to paste in it...
View Article