How to insert a post from a different post type after every nth post
Figured out a solution that works for the issue I was having. This should be able to place an ‘Ads’ custom post type every 3rd post of ‘Articles’ custom post type. <?php // $paged = ( get_query_var( ‘paged’ ) ) ? get_query_var( ‘paged’ ) : 1; $get_posts = new WP_Query(array( ‘post_type’ => ‘articles’, ‘post_status’ =>’publish’, … Read more