Hi there,
you can add this PHP Snippet to your site:
function db_hook_inside_shortcode($atts, $content = null) {
ob_start();
do_action('db_inside_post_loop');
return ob_get_clean();
}
add_shortcode('hooky_shortcode', 'db_hook_inside_shortcode');
add_action('generate_after_do_template_part',function(){
global $loop_counter;
$loop_counter++;
if ( $loop_counter == 5 ) {
echo do_shortcode('[hooky_shortcode]');
}
});
Then go to Appearance > Elements and create a new Hook Element.
Set the Hook to Custom and in the field provided add: db_inside_post_loop
Set the Display rules to Front Page
.
In the hook text area, add you advert code.