0
以下のコードは、Wordpressアーカイブページの5番目の投稿の後に広告バナーを挿入するために使用されています.1番目と5番目の投稿の後にバナーを挿入したいのですが、私はそれが必要なもののために。WordPressアーカイブに広告を挿入する
<?php
function insert_between_posts($post) {
global $wp_query;
// Check if we're in the main loop
if ($wp_query->post != $post)
return;
// Check if we're at the right position
if (5 != $wp_query->current_post)
return;
// Display the banner
echo '
<div banner>BANNER</div>
';
}
add_action('the_post', 'insert_between_posts');
?>