普通网友 2017-08-28 12:14
浏览 36
已采纳

插入AdSense WordPress循环

I would like to insert AdSense Code inside my wordpress loop after 3, 5, 10 posts. this is my code:

<?php
if ( have_posts() ) : ?>

    <?php
    while ( have_posts() ) : the_post();

        get_template_part('/framework/templates/content-grid', get_post_format());

    endwhile;

    else :

        get_template_part( '/framework/templates/content', 'none' );

endif; ?>

How could I manage this?

  • 写回答

1条回答 默认 最新

  • douwa1304 2017-08-28 12:18
    关注
    You can achieve this by creating a custom counter.
    
         <?php
        $i = 1;
           if ( have_posts() ) : ?>
            <?php
                        while ( have_posts() ) : the_post();
    
         if($i==3||$i==5||$i==10){
            /*Adsence here*/
            }
                 get_template_part( '/framework/templates/content-grid', get_post_format() );
    
           $i++;
                 endwhile;
    
              else :
    
                get_template_part( '/framework/templates/content', 'none' );
    
                    endif; ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大