Code ไฟล์ single.php เป็นแบบนี้จะใส่ adsense ไว้ใต้ Post ยังไง

เริ่มโดย noobi, 05 ตุลาคม 2014, 20:49:56

หัวข้อก่อนหน้า - หัวข้อถัดไป

0 สมาชิก และ 1 ผู้มาเยือน กำลังดูหัวข้อนี้

noobi

Code ไฟล์ single.php เป็นแบบนี้จะใส่ adsense ไว้ใต้ Post ยังไง ตรงไหน รบกวนผู้รู้ ช่วยทีค่ะ


get_header(); ?>

   <div id="primary" class="content-area">
      <div id="content" class="site-content" role="main">

         <?php
            // Start the Loop.
            while ( have_posts() ) : the_post();

               /*
                * Include the post format-specific template for the content. If you want to
                * use this in a child theme, then include a file called called content-___.php
                * (where ___ is the post format) and that will be used instead.
                */
               get_template_part( 'content', get_post_format() );

               // Previous/next post navigation.
               twentyfourteen_post_nav();

               // If comments are open or we have at least one comment, load up the comment template.
               if ( comments_open() || get_comments_number() ) {
                  comments_template();
               }
            endwhile;
         ?>
      </div><!-- #content -->
   </div><!-- #primary -->

<?php
get_sidebar( 'content' );
get_sidebar();
get_footer();

wasantec

เปิดไฟล์ content.php ขึ้นมาแล้วก็เอาใส่ไว้ใต้  <?php the_content(  ); ?>

gapgag55

อีกวิธีครับ

get_header(); ?>

   <div id="primary" class="content-area">
      <div id="content" class="site-content" role="main">

         <?php
            // Start the Loop.
            while ( have_posts() ) : the_post();

               /*
                * Include the post format-specific template for the content. If you want to
                * use this in a child theme, then include a file called called content-___.php
                * (where ___ is the post format) and that will be used instead.
                */
               get_template_part( 'content', get_post_format() );
                 ตำแหน่ง Banner
               // Previous/next post navigation.
               twentyfourteen_post_nav();

               // If comments are open or we have at least one comment, load up the comment template.
               if ( comments_open() || get_comments_number() ) {
                  comments_template();
               }
            endwhile;
         ?>
      </div><!-- #content -->
   </div><!-- #primary -->

<?php
get_sidebar( 'content' );
get_sidebar();
get_footer();