Hook into the loop via a plugin, and output something after every X post?
You can try the following: Method 1: We can inject the ads via the the_post action, in the main loop: add_action( ‘loop_start’, ‘wpse_141253_loop_start’ ); function wpse_141253_loop_start( $query ) { if( $query->is_main_query() ) { add_action( ‘the_post’, ‘wpse_141253_the_post’ ); add_action( ‘loop_end’, ‘wpse_141253_loop_end’ ); } } function wpse_141253_the_post() { static $nr = 0; if( 0 === ++$nr % … Read more