– Copy code file category.php  sang file single.php rồi sửa code như sau

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

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

                        <h1 class=”single-title”><?php the_title(); ?></h1> // lấy tiêu đề bài viết

                        <div class=”meta”>

                        <span> Ngày đăng: <?php echo get_the_date(‘d – m – Y’); ?> </span>

                        <span> Tác giả: <?php the_author(); ?> </span> // lấy tác giả

                        <span> Chuyên mục: <?php the_category(‘,’); ?> </span> //lấy chuyên mục

                        <span> Lượt xem: 1233 </span>

                        <article class=”post-content”>

                                    <?php the_content(); ?> //lấy nội dung bài viết

                        </article>

                        <div class=”tag”>

                                    <?php the_tags(‘Từ khóa: ‘); ?>    // lấy từ khóa

                        </div>

                        </div>

                        <?php endwhile; ?>

                   <?php endif; ?>

             – Xây dựng comment của facebook

             + vào google search comment facebook dev

https://developers.facebook.com/docs/plugins/comments/

             + Đặt thuộc tính data-width = ‘100%’ rồi lấy mã comment, copy page vào phần comment được tạo trong thẻ single.php dưới thẻ article.

             <div class=”comment”>

                 <div class=”fb-comments” data href=”<?php the_permalink();?>” data-width=”100%” data-numposts=”5″></div>

                 </div>

                 – Thêm nút like (thích), chia se, gửi, lưu vào

                 Vào đường dẫn https://developers.facebook.com/docs/plugins/like-button thiết lập và lấy mã dán vào bài viết là ok.

             – Thêm bài viết liên quan, sử dụng đoạn code sau để thêm bài viết liên quan. Ctrl + F tìm kiếm bài viết liên quan

             <div class=”lienquan”>

                 <h3>Bài viết liên quan</h3>

                 <div class=”content-lienquan”>

                 <?php

                 $categories = get_the_category(get_the_id());

                     if ($categories)

                 {

                        $category_ids = array();

                 foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;

                 $args=array(

                        ‘category__in’  => $category_ids,

                        ‘post__not_in’  => array(get_the_id()),

                        ‘showposts’                  =>8, // Số bài viết bạn muốn hiển thị.

                 );

                        $my_query = new wp_query($args);

                        if( $my_query->have_posts() )

                        {

                        echo ‘<ul class=”list-news-lq”>’;

                         while ($my_query->have_posts())

                        {

                        $my_query->the_post();

                        ?>

                        <li>

                        <div class=”new-img”><a href=”<?php the_permalink(); ?>”><?php the_post_thumbnail(array(85, 75)); ?></a></div>

                 <div class=”item-list”>

                 <h4><a href=”<?php the_permalink(); ?>”> <?php the_title();?>  </a></h4>

                 <div class=”meta-list”>

                 <span>Ngày đăng: <?php echo get_the_date(‘d – m – Y’); ?></span>

                 </div>

                        </div>

                 <div class=”clear”></div>

                        </li>                                                                                                        

                 <?php

                 }

                 echo ‘</ul>’;

                         }

                     }

                        ?>

                 </div>

                 </div>

                 – Thiết lập các thông số php cần thiết cho bài viết liên quan.

             – Chỉnh sửa css giao diện trang single cho phù hợp.