Categories
PHP WordPress

Sample code: single post bottom navigation w/Ajax Load More

<?php if ( in_category( 'shows' )): ?>
	
	<?php $current_id = get_the_ID();
	echo do_shortcode('[ajax_load_more post__not_in="'. $current_id .'" id="post-feed-ajax" loading_style="blue" container_type="ul" post_type="post"  orderby="menu_order" posts_per_page="8" category="shows" button_label="Load more blog posts" button_loading_label="Loading posts..." scroll="false"]'); ?>
		
<?php elseif ( in_category( 'blog' )): ?>
	
	<?php $current_id = get_the_ID();
	echo do_shortcode('[ajax_load_more post__not_in="'. $current_id .'" id="post-feed-ajax" loading_style="blue" container_type="ul" post_type="post"  orderby="menu_order" posts_per_page="4" category="blog" button_label="Load more blog posts" button_loading_label="Loading posts..." scroll="false"]'); ?>
		
<?php else: ?>
	
<?php endif; ?>