我的网站,dadgab.com(Wordpress)有一个2列循环,有4行。
标题
X X
X X
X X
的页脚
我想将adsense javascript插入到第3个帖子的位置(左中)。在整个星期都跑来跑去试图实现这个,希望有人在这里可以帮助我。
这是我在index.php中的循环:
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('box'); ?>>
<div class="post-image">
<?php
$thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $thumb,'full' ); //get full URL to image (use "large" or "medium" if the images too big)
$image = aq_resize( $img_url, 300, 150, true ); //resize & crop the image
?>
<?php if($image) : ?>
<a href="<?php the_permalink(); ?>"><img width="300" height="150" src="<?php echo $image ?>" alt="<?php the_title() ?>" /></a>
<?php endif; ?>
</div>
我尝试添加各种方法,包括将以下文本添加到functions.php并添加一个空白帖子,标记为'adsense'。这只会产生一个空盒子,但如果我实际点击帖子,广告就会显示。
add_filter('the_content', 'replace_adsense_posts_excerpt');
function replace_adsense_posts_excerpt($excerpt)
{
$post = get_post(get_the_ID());
if (has_tag('adsense ', $post)) {
// Replace the content with our adsense code
$excerpt = my_adsense_code();
}
return $excerpt;
}
function my_adsense_code()
{
$adsense = 'ADSENSE CODE';
return $adsense;
}
答案 0 :(得分:0)
只需在循环中添加一个计数器,如果计数器等于3,则输出代码:
<?php $i=0; while ( have_posts() ) : the_post(); $i++;?>
<?php if($i==3):?>
<div <?php post_class('box'); ?>>ADSENSE CODE</div>
<?php endif;?>
<article id="post-<?php the_ID(); ?>" <?php post_class('box'); ?>>
....
您需要使用css来确保adsense
与文章