Hướng dẫn wordpress custom functions php




Một trong những file quan trọng nhất của một theme WordPress đó là file functions.php. Đây là một file bắt buộc trong theme và nó sẽ chứa các đoạn code nguồn mà bạn muốn nó luôn được load mỗi khi tải website, tóm lại là toàn bộ code PHP cần thiết trong một theme (ngoại trừ các code hiển thị nội dung) thì sẽ đều được viết vào file này.

Trong bài này, chúng ta sẽ tiến hành khai báo các đoạn code cần thiết trong file functions.php này, cũng như thiết lập một số hằng dữ liệu (constrant) để thiết lập một số dữ liệu quan trọng mà chúng ta sẽ cần sử dụng lại nhiều.

Thiết lập các hằng dữ liệu quan trọng

Trong khi viết code trong file functions.php, chúng ta sẽ dùng đi dùng lại một số đoạn code như get_stylesheet_directory_uri, hoặc khai báo các đường dẫn. Do vậy, chúng ta nên thiết lập trước một số hằng dữ liệu chứa cố định các giá trị đó để có viết thì chỉ cần viết tên hằng ra thôi.

Chúng ta có code ban đầu như sau:

Hướng dẫn wordpress custom functions php


/**
@ Thiết lập các hằng dữ liệu quan trọng
@ THEME_URL = get_stylesheet_directory() – đường dẫn tới thư mục theme
@ CORE = thư mục /core của theme, chứa các file nguồn quan trọng.
**/
define( ‘THEME_URL’, get_stylesheet_directory() );
define( ‘CORE’, THEME_URL . ‘/core’ );

Rồi sau này khi bạn làm theme khác, hoặc cải tiến theme thì có thể thêm một số hằng dữ liệu vào để cho phù hợp với nhu cầu của mình, cái quan trọng là mình muốn tạo thói quen này cho các bạn ngay từ bây giờ.

Bây giờ bạn hãy tạo thêm một thư mục trong theme tên là core và tạo một file tên là init.php trong thư mục đó. Tại sao lại tạo thư mục này và file này làm cái gì? Bởi vì như mình đã nói ở đầu bài, là trong bài này mình sẽ hướng các bạn đến việc làm framework theme cho riêng mình luôn, nên thư mục /core sẽ chứa các file code PHP quan trọng trong theme của bạn mà bạn không muốn thay đổi nhiều nếu có nhu cầu tạo child theme. File init.php sẽ có ý nghĩa là load các file PHP đặc thù trong theme mình mà chúng ta sẽ tạo, ví dụ như load các file tạo widget của theme vào, bước này chúng ta sẽ làm sau.

Bạn viết tiếp vào file functions.php như sau để load file init.php.


/**
@ Load file /core/init.php
@ Đây là file cấu hình ban đầu của theme mà sẽ không nên được thay đổi sau này.
**/

require_once( CORE . ‘/init.php’ );

Hướng dẫn wordpress custom functions php

Thiết lập chiều rộng nội dung ($content_width)

Bây giờ, bạn hãy đặt đoạn code này vào file functions.php nhé:


/**
@ Thiết lập $content_width để khai báo kích thước chiều rộng của nội dung
**/
if ( ! isset( $content_width ) ) {
/*
* Nếu biến $content_width chưa có dữ liệu thì gán giá trị cho nó
*/
$content_width = 620;
}

Biến $content_width nghĩa là chúng ta sẽ thiết lập chiều rộng tối đa mà phần hiển thị nội dung (không tính sidebar) mà theme được phép sử dụng, đây là một tính năng của theme WordPress. Khi thiết lập biến này, điều đó không có nghĩa là theme của bạn đã có chiều rộng vì ta phải viết CSS nữa. Nhưng việc khai báo như vậy sẽ giúp cho các thành phần hiển thị trong nội dung như các mã nhúng oEmbed, hình ảnh,….sẽ không bị tràn ra ngoài khung nội dung vì nó sẽ dựa theo giá trị $content_width mà hiển thị tối đa.

Hàm thiết lập chức năng của theme

Tiếp tục, chúng ta sẽ tạo một hàm tên gì đó và sẽ có chức năng móc vào cái hook init của WordPress để khởi tạo các chức năng sẽ được theme hỗ trợ, như post format, customizer,…Hãy chèn đoạn sau vào:


/**
@ Thiết lập các chức năng sẽ được theme hỗ trợ
**/
if ( ! function_exists( ‘thachpham_theme_setup’ ) ) {
/*
* Nếu chưa có hàm thachpham_theme_setup() thì sẽ tạo mới hàm đó
*/
function thachpham_theme_setup() {

}
add_action ( ‘init’, ‘thachpham_theme_setup’ );

Hướng dẫn wordpress custom functions php

}

Điều này có nghĩa là, hàm thachpham_theme_setup() sẽ được tạo mới nếu máy chủ kiểm tra chưa có hàm đó tồn tại. Sau đó, hàm này sẽ được móc vào action hook init của WordPress để nó sẽ được thực thi sau khi WordPress đã load xong trang.

Bây giờ, chúng ta sẽ tiến hành viết code vào trong hàm thachpham_theme_setup() để thiết lập một số tính năng.

Thiết lập theme có thể dịch được sang nhiều ngôn ngữ

Chức năng này có nghĩa là chúng ta sẽ khai báo thư mục chứa ngôn ngữ trong theme, và khai báo textdomain để load các chuỗi ngôn ngữ có trong theme nhằm mục đích cho theme có thể đọc được các file ngôn ngữ và người dùng có thể dịch ra nhiều ngôn ngữ khác nhau bằng việc sửa/tạo file .po.

Hướng dẫn wordpress custom functions php

Chúng ta có code như sau:


/*
* Thiết lập theme có thể dịch được
*/
$language_folder = THEME_URL . ‘/languages’;
load_theme_textdomain( ‘thachpham’, $language_folder );

Cái textdomain nghĩa là một cái tên nhận diện các chuỗi mà chúng ta sẽ cho phép dịch trong theme. Cách viết chuỗi chứa textdomain mình sẽ nói về sau.

Tự chèn liên kết RSS Feed trong mã nguồn

Đây là một chức năng nhỏ trong WordPress, nó sẽ tự thêm một liên kết RSS Feed chèn trong cặp thẻ trong mã nguồn website để các trình đọc RSS Feed có thể hiểu trực tiếp địa chỉ RSS Feed trong website của bạn mà không cần khai báo chính xác địa chỉ RSS Feed, tạo sự thuận tiện cho người đọc.


/*
* Tự chèn RSS Feed links trong
*/
add_theme_support( ‘automatic-feed-links’ );

Thêm chức năng thumbnail cho post

Chức năng thumbnail ở đây nghĩa là chức năng Featured Image mà khi chúng ta soạn post. Để cho cái đó có thể hiển thị ra thì chúng ta phải khai báo sử dụng chức năng này trong theme:

Hướng dẫn wordpress custom functions php


/*
* Thêm chức năng post thumbnail
*/
add_theme_support( ‘post-thumbnails’ );

Thêm chức năng title-tag

Đây là một chức năng mới có trong WordPress 4.1 trở đi. Chức năng title-tag nghĩa là sẽ giúp cho theme tự thêm thẻ trên tài liệu HTML được xuất ra và nó sẽ có cấu trúc khá thông minh như:</p><ul><li>Hiển thị kiểu Tên website | Mô tả website ở trang chủ</li><li>Hiển thị kiểu Tên post/page | Tên website ở trang nội dung post type</li></ul><p>Điều này có nghĩa là sau này chúng ta code file header.php thì sẽ không cần thêm hàm wp_title() nữa. Hãy cứ yên tâm là các plugin hỗ trợ SEO như WordPress SEO by Yoast đều tương thích với chức năng này.</p><pre><br> /*<br> * Thêm chức năng title-tag để tự thêm <title><br> */<br> add_theme_support( ‘title-tag’ );<br> </pre><h4>Thêm chức năng Post Format</h4><p>Chức năng Post Format nghĩa là chúng ta có thể tùy biến việc hiển thị post theo các định dạng như Video, Image, Gallery, Quote,…Ở đây chúng ta sẽ chỉ sử dụng vài post format mà thôi.</pre></p><pre><br> /*<br> * Thêm chức năng post format<br> */<br> add_theme_support( ‘post-formats’,<br> array(<br> ‘image’,<br> ‘video’,<br> ‘gallery’,<br> ‘quote’,<br> ‘link’<br> )<br> );<br> </pre><p>Bây giờ bạn có thể thử vào tạo post mới sẽ thấy có khung chọn Post Format rồi.</p><p><p><div class="imgBox"><img alt="Hướng dẫn wordpress custom functions php" data-orgimg="https://sg.cdnki.com/huong-dan-wordpress-custom-functions-php---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA2L1BsYXRpbnVtLXZwcy0xMjAweDEyMDAtMS5wbmc=.webp" ></img></div></p><h4>Thêm chức năng custom background</h4><p>Chức năng này sẽ giúp cho người dùng có thể đổi lại màu nền hoặc thêm ảnh nền cho website dễ dàng thông qua Customize.</p><pre><br> /*<br> * Thêm chức năng custom background<br> */<br> $default_background = array(<br> ‘default-color’ => ‘#e8e8e8’,<br> );<br> add_theme_support( ‘custom-background’, $default_background );<br> </pre><h4>Tạo menu location</h4><p>Trong cái theme mà chúng ta sẽ làm sẽ có một menu hiển thị ra bên ngoài. Do vậy chúng ta sẽ tiến hành viết code để WordPress tạo một Menu Location để chúng ta có thể thêm menu vào đó.</p><pre><p>/*<br> * Tạo menu cho theme<br> */<br> register_nav_menu ( ‘primary-menu’, __(‘Primary Menu’, ‘thachpham’) );</p> </pre><p><p><div class="imgBox"><img alt="Hướng dẫn wordpress custom functions php" data-orgimg="https://sg.cdnki.com/huong-dan-wordpress-custom-functions-php---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA2L1BsYXRpbnVtLXZwcy0xMjAweDEyMDAtMS5wbmc=.webp" ></img></div></p><p>Ở đoạn trên, mình sẽ tạo một menu có slug tên là <code>primary-menu</code>, và sẽ đặt tên menu này là Primary Menu. Thế cái đoạn <code>__('Primary Menu', 'thachpham')</code> có ý nghĩa gì? Đó chính là một đoạn text mà mình muốn những người sử dụng theme sau này có thể tự dịch được sang ngôn ngữ khác bằng các phần mềm dịch, và thachpham chính là textdomain để nhận diện. Tất cả các đoạn text mà bạn muốn có thể dịch được sẽ đều phải viết có cấu trúc là <code>__('Text', 'textdomain')</code> thay vì chỉ viết thông thường.</p><h4>Tạo sidebar</h4><p>Theme này sẽ có một sidebar nên chúng ta sẽ cần tạo ra một sidebar để chút nữa chúng ta có thể viết code hiển thị vào file sidebar.php nhé.</p><pre><br> /*<br> * Tạo sidebar cho theme<br> */<br> $sidebar = array(<br> ‘name’ => __(‘Main Sidebar’, ‘thachpham’),<br> ‘id’ => ‘main-sidebar’,<br> ‘description’ => ‘Main sidebar for Thachpham theme’,<br> ‘class’ => ‘main-sidebar’,<br> ‘before_title’ => ‘<h3 class="widgettitle">’,<br> ‘after_title’ => ‘</h3>’<br> );<br> register_sidebar( $sidebar );<br> </pre><p>Bây giờ bạn có thể sẽ thấy sidebar đã xuất hiện trong Appearance -> Widgets rồi đó.</p><h3 id="toan-bo-noi-dung-functions-php-trong-bai-nay">Toàn bộ nội dung functions.php trong bài này</h3><pre><br> <?php <p>/**<br> @ Thiết lập các hằng dữ liệu quan trọng<br> @ THEME_URL = get_stylesheet_directory() – đường dẫn tới thư mục theme<br> @ CORE = thư mục /core của theme, chứa các file nguồn quan trọng.<br> **/<br> define( ‘THEME_URL’, get_stylesheet_directory() );<br> define( ‘CORE’, THEME_URL . ‘/core’ );</p> <p><p><div class="imgBox"><img alt="Hướng dẫn wordpress custom functions php" data-orgimg="https://sg.cdnki.com/huong-dan-wordpress-custom-functions-php---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA2L1BsYXRpbnVtLXZwcy0xMjAweDEyMDAtMS5wbmc=.webp" ></img></div></p><p>/**<br> @ Load file /core/init.php<br> @ Đây là file cấu hình ban đầu của theme mà sẽ không nên được thay đổi sau này.<br> **/</p> <p> require_once( CORE . ‘/init.php’ );</p> <p> /**<br> @ Thiết lập $content_width để khai báo kích thước chiều rộng của nội dung<br> **/<br> if ( ! isset( $content_width ) ) {<br> /*<br> * Nếu biến $content_width chưa có dữ liệu thì gán giá trị cho nó<br> */<br> $content_width = 620;<br> }</p> <p>/**<br> @ Thiết lập các chức năng sẽ được theme hỗ trợ<br> **/<br> if ( ! function_exists( ‘thachpham_theme_setup’ ) ) {<br> /*<br> * Nếu chưa có hàm thachpham_theme_setup() thì sẽ tạo mới hàm đó<br> */<br> function thachpham_theme_setup() {<br> /*<br> * Thiết lập theme có thể dịch được<br> */<br> $language_folder = THEME_URL . ‘/languages’;<br> load_theme_textdomain( ‘thachpham’, $language_folder );</p> <p><p><div class="imgBox"><img alt="Hướng dẫn wordpress custom functions php" data-orgimg="https://sg.cdnki.com/huong-dan-wordpress-custom-functions-php---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA2L1BsYXRpbnVtLXZwcy0xMjAweDEyMDAtMS5wbmc=.webp" ></img></div></p><div style="width:100%; margin:20px auto; display:block"> <ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8587332220"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div></p><p> /*<br> * Tự chèn RSS Feed links trong <head><br> */<br> add_theme_support( ‘automatic-feed-links’ );</p> <p> /*<br> * Thêm chức năng post thumbnail<br> */<br> add_theme_support( ‘post-thumbnails’ );</p> <p> /*<br> * Thêm chức năng title-tag để tự thêm <title><br> */<br> add_theme_support( ‘title-tag’ );</p> <p> /*<br> * Thêm chức năng post format<br> */<br> add_theme_support( ‘post-formats’,<br> array(<br> ‘video’,<br> ‘image’,<br> ‘audio’,<br> ‘gallery’<br> )<br> );</p> <p><p><div class="imgBox"><img alt="Hướng dẫn wordpress custom functions php" data-orgimg="https://sg.cdnki.com/huong-dan-wordpress-custom-functions-php---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA2L1BsYXRpbnVtLXZwcy0xMjAweDEyMDAtMS5wbmc=.webp" ></img></div></p><p> /*<br> * Thêm chức năng custom background<br> */<br> $default_background = array(<br> ‘default-color’ => ‘#e8e8e8’,<br> );<br> add_theme_support( ‘custom-background’, $default_background );</p> <p> /*<br> * Tạo menu cho theme<br> */<br> register_nav_menu ( ‘primary-menu’, __(‘Primary Menu’, ‘thachpham’) );</p> <p> /*<br> * Tạo sidebar cho theme<br> */<br> $sidebar = array(<br> ‘name’ => __(‘Main Sidebar’, ‘thachpham’),<br> ‘id’ => ‘main-sidebar’,<br> ‘description’ => ‘Main sidebar for Thachpham theme’,<br> ‘class’ => ‘main-sidebar’,<br> ‘before_title’ => ‘<h3 class="widgettitle">’,<br> ‘after_sidebar’ => ‘</h3>’<br> );<br> register_sidebar( $sidebar );<br> }<br> add_action ( ‘init’, ‘thachpham_theme_setup’ );</p> <p> }<br> </p></pre><p><p><div class="imgBox"><img alt="Hướng dẫn wordpress custom functions php" data-orgimg="https://sg.cdnki.com/huong-dan-wordpress-custom-functions-php---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA2L1BsYXRpbnVtLXZwcy0xMjAweDEyMDAtMS5wbmc=.webp" ></img></div></p><h3 id="loi-ket">Lời kết</h3><p>Vậy là trong bài này chúng ta đã có một file functions.php khá đầy đủ các tính năng cần thiết trong theme rồi. Thêm vào đó, cũng ta đã có thêm thư mục /core trong theme và file init.php trong đó nhưng chưa có nội dung.</p><p>Ở bài sau, chúng ta sẽ đi qua việc viết thẳng đến nội dung của file header.php của theme nhé.</p><p><p></p><p><h5>Thạch Phạm</h5><p>Bé Thạch 18 tuổi, hiện công tác tại AZDIGI với vị trí giữ xe và viết thuê tại ThachPham.Com. Sở thích nghiên cứu về website, DevOps, SysAdmin và xăm mình nữa. Phương châm sống của bé là "No Pain, No Gain".</p><p>Hiện tại blog tạm đóng bình luận vì mình cần tập trung thời gian vào cập nhật bài viết. Bình luận sẽ mở ra cho đến khi mình sẵn sàng.</p><div class='paramage'></div> <div class="contenBreak"></div></p></div> <div class="readmore_content_exists"><button id="readmore_content"><span class="arrow"><span></span></span>Đọc tiếp</button></div> </td></tr></table> <script async src="/dist/js/lazyhtml.min.js" crossorigin="anonymous"></script> <div class="lazyhtml" data-lazyhtml> <script type="text/lazyhtml"> <div class="youtubeVideo"><h3>Video liên quan</h3> <iframe width="560" height="315" src="https://www.youtube.com/embed/syGWLTyXjjY?controls=0" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"allowfullscreen></iframe> </div> </script> </div> <div class="mt-3"> <div class="tags"> <a href="https://biquyetxaynha.com/tags/programming" class="tag-link">programming</a> <a href="https://biquyetxaynha.com/tags/php" class="tag-link">php</a> <a href="https://biquyetxaynha.com/tags/Single php" class="tag-link">Single php</a> <a href="https://biquyetxaynha.com/tags/Function WordPress PHP" class="tag-link">Function WordPress PHP</a> <a href="https://biquyetxaynha.com/tags/Footer php" class="tag-link">Footer php</a> <a href="https://biquyetxaynha.com/tags/Function PHP" class="tag-link">Function PHP</a> <a href="https://biquyetxaynha.com/tags/Content php" class="tag-link">Content php</a> <a href="https://biquyetxaynha.com/tags/Function file PHP" class="tag-link">Function file PHP</a> </div> </div> <div class="post-tools"> <button data-postid="huong-dan-wordpress-custom-functions-php" class="btn btn-answerModalBox"><img class="mr-1" alt="Hướng dẫn wordpress custom functions php" src="/dist/images/svg/messages_16.svg">Reply</button> <button data-postid="huong-dan-wordpress-custom-functions-php" data-vote="up" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn wordpress custom functions php" src="/dist/images/svg/face-smile_16.svg">9</button> <button data-postid="huong-dan-wordpress-custom-functions-php" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn wordpress custom functions php" src="/dist/images/svg/poo_16.svg">0</button> <button class="btn"><img class="mr-1" alt="Hướng dẫn wordpress custom functions php" src="/dist/images/svg/facebook_16.svg"> Chia sẻ</button> </div> </div><!-- end question-post-body --> </div><!-- end question-post-body-wrap --> </div><!-- end question --> <div id="answers_huong-dan-wordpress-custom-functions-php" class="answers"> </div><!-- end answer-wrap --> <div class="entryFooter"> <div class="footerLinkAds"><div style="width:100%; margin:0 auto;"> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8199996671"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="footerRelated"><div class="postRelatedWidget"> <h2>Bài Viết Liên Quan</h2> <div class="questions-snippet layoutNews border-top border-top-gray"> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/giai-bai-tap-sinh-hoc-10-bai-22-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/n2VrMJR9IeM/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYHCBlKDgwDw==&rs=AOn4CLAi-yBwx6wus3NEtFfbt_0rrMz7QA" alt="Giải bài tập sinh học 10 bài 22 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/giai-bai-tap-sinh-hoc-10-bai-22-nam-2024">Giải bài tập sinh học 10 bài 22 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Học" class="tag-link">Học</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/chi-phi-cau-thanh-len-bang-du-toan-du-an-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/mZ85M9Kv0Ko/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAx2UYenq5HG6Sc4R5frdv5l4NS-Q" alt="Chi phí cấu thành lên bảng dự toán dự án năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/chi-phi-cau-thanh-len-bang-du-toan-du-an-nam-2024">Chi phí cấu thành lên bảng dự toán dự án năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cau-be-quang-binh-hat-mua-chieu-mien-trung-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/-K2QdS_Ndt0/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLC6X_FYV7p8BST252-pTeLmuxC45Q" alt="Cậu bé quảng bình hát mưa chiều miền trung năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cau-be-quang-binh-hat-mua-chieu-mien-trung-nam-2024">Cậu bé quảng bình hát mưa chiều miền trung năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/viet-doan-van-co-su-dung-thuat-ngu-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/3b7ybmHQ4fk/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBmKtvC6s9l6EZ4WjGg2Bp_GCNBeg" alt="Viết đoạn văn có sử dụng thuật ngữ năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/viet-doan-van-co-su-dung-thuat-ngu-nam-2024">Viết đoạn văn có sử dụng thuật ngữ năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/loi-5-trong-ung-dung-akam-pro-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/ILHlvWlkPPg/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCgONMapUhJJVNwE0vGutei00W_fw" alt="Lỗi 5 trong ung dung akam pro là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/loi-5-trong-ung-dung-akam-pro-la-gi-nam-2024">Lỗi 5 trong ung dung akam pro là gì năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Là gì" class="tag-link">Là gì</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/anh-van-9-unit-1-listen-and-read-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/6GwRw3tFG_g/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4Af4OgAK4CIoCDAgAEAEYZSBlKGUwDw==&rs=AOn4CLC5WQQFcDPnTb7uVDc5xQfppXmhZw" alt="Anh văn 9 unit 1 listen and read năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/anh-van-9-unit-1-listen-and-read-nam-2024">Anh văn 9 unit 1 listen and read năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Top List" class="tag-link">Top List</a> <a href="/tags/List" class="tag-link">List</a> <a href="/tags/Unit3 lớp 9" class="tag-link">Unit3 lớp 9</a> <a href="/tags/Anh văn9" class="tag-link">Anh văn9</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/giai-baaif-taaph-hoa-9-bai-24-trang-58-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/NVZ7VpHNtfw/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBh-zPDjP-aYGZE5U7ObKIwKAWfPA" alt="Giải baaif taaph hóa 9 bài 24 trang 58 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/giai-baaif-taaph-hoa-9-bai-24-trang-58-nam-2024">Giải baaif taaph hóa 9 bài 24 trang 58 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/VietJack 9" class="tag-link">VietJack 9</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/img-id-hzdownscaled-style-position-absolute-top-code-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/rdSHUAger9Y/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLB8iyGF-PRvEELO8RpHCeJ8o8A3LQ" alt="Img id hzdownscaled style position: absolute top: code năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/img-id-hzdownscaled-style-position-absolute-top-code-nam-2024">Img id hzdownscaled style position: absolute top: code năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Top List" class="tag-link">Top List</a> <a href="/tags/Top" class="tag-link">Top</a> <a href="/tags/Img position: absolute" class="tag-link">Img position: absolute</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/diem-chuan-truong-dai-hoc-tai-chinh-ke-toan-tphcm-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/gI4mlCf5qbQ/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYKSBXKH8wDw==&rs=AOn4CLB9sHDN0-L7DWZeEdNksZRi1-bfew" alt="Điểm chuẩn trường đại học tài chính kế toán tphcm năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/diem-chuan-truong-dai-hoc-tai-chinh-ke-toan-tphcm-nam-2024">Điểm chuẩn trường đại học tài chính kế toán tphcm năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Học" class="tag-link">Học</a> <a href="/tags/Đại học" class="tag-link">Đại học</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/nguoi-thanh-hoa-nghe-an-bi-ngam-tay-chay-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/bpUVF7XsvD8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAwbdr0r5KwDLVwxjC09aCC8zBTsg" alt="Người thanh hóa nghệ an bị ngầm tẩy chay năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/nguoi-thanh-hoa-nghe-an-bi-ngam-tay-chay-nam-2024">Người thanh hóa nghệ an bị ngầm tẩy chay năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="max-width:840px"> <ins class="adsbygoogle" style="display:block" data-ad-format="fluid" data-ad-layout-key="-fb-44+c1-1p-ns" data-ad-client="ca-pub-4987931798153631" data-ad-slot="7655066491"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-su-no-vi-nhiet-lop-6-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/W3BUknkJnIE/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCDVWhCSWTxYToi90ujn3K3yGI2UA" alt="Bài tập sự nở vì nhiệt lớp 6 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-su-no-vi-nhiet-lop-6-nam-2024">Bài tập sự nở vì nhiệt lớp 6 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> <a href="/tags/VietJack 6" class="tag-link">VietJack 6</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/chung-minh-cp-cq-dp-dq-toan-10-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/_XtFvRO-_Rw/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4AdQGgALgA4oCDAgAEAEYZCBkKGQwDw==&rs=AOn4CLCeq8kxlVMULrdbgz2kDzUSX0zJQA" alt="Chứng minh cp cq dp dq toán 10 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/chung-minh-cp-cq-dp-dq-toan-10-nam-2024">Chứng minh cp cq dp dq toán 10 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Loigiaihay 10" class="tag-link">Loigiaihay 10</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/lam-the-nao-de-toc-mai-dai-nhanh-nhat-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/qYWukK3t3C8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBVnsTBF650BDVX6iuUH8oHRyfY2A" alt="Làm thế nào để tóc mái dài nhanh nhất năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/lam-the-nao-de-toc-mai-dai-nhanh-nhat-nam-2024">Làm thế nào để tóc mái dài nhanh nhất năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Thế nào" class="tag-link">Thế nào</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/cach-lam-cac-bai-toan-ve-khoi-lang-tru-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/sjwYwjaCXLU/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAg9HhMKl-K6p8faoWC-MFvgys1oQ" alt="Cách làm các bài toán về khối lăng trụ năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cach-lam-cac-bai-toan-ve-khoi-lang-tru-nam-2024">Cách làm các bài toán về khối lăng trụ năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Mẹo Hay" class="tag-link">Mẹo Hay</a> <a href="/tags/Cách" class="tag-link">Cách</a> <a href="/tags/Lăng trụ đứng" class="tag-link">Lăng trụ đứng</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/chi-phi-tu-thien-hach-toan-tai-khoan-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/fENsSOtZw44/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAFvOaTXxF6xEW300VkzTzqVlVP2Q" alt="Chi phí từ thiện & hạch toán tài khoản nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/chi-phi-tu-thien-hach-toan-tai-khoan-nao-nam-2024">Chi phí từ thiện & hạch toán tài khoản nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bai-tap-on-thi-cong-chuc-thong-ke-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/6g-yW52fZF0/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDN_bfTsNVRBoBtEmiycJyhIC92JQ" alt="Bài tập ôn thị công chức thống kê năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-on-thi-cong-chuc-thong-ke-nam-2024">Bài tập ôn thị công chức thống kê năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Bài tập" class="tag-link">Bài tập</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/giai-toan-lop-5-luyen-tap-trang-167-bai-34-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/5y6LzOxvMS0/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLC7fM8vVKq7DSxfsLbUioTnNw0LfA" alt="Giải toán lớp 5 luyện tập trang 167 bài 34 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/giai-toan-lop-5-luyen-tap-trang-167-bai-34-nam-2024">Giải toán lớp 5 luyện tập trang 167 bài 34 năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/ave-maria-mp3-nguyen-van-dong-soan-loi-viet-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/cpotop8xoRg/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYSCBHKFkwDw==&rs=AOn4CLDhGYJtFr2RLwl6DuK50VA6d3UAFw" alt="Ave maria mp3 nguyễn văn đông soạn lời việt năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/ave-maria-mp3-nguyen-van-dong-soan-loi-viet-nam-2024">Ave maria mp3 nguyễn văn đông soạn lời việt năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/bien-dong-la-cau-noi-giua-2-dai-duong-nao-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/qIORqnvgEgk/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYQiBcKGUwDw==&rs=AOn4CLDPEC4jDyqV5wfZeVdYgyWPDMIkNg" alt="Biển đông là cầu nối giữa 2 đại dương nào năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bien-dong-la-cau-noi-giua-2-dai-duong-nao-nam-2024">Biển đông là cầu nối giữa 2 đại dương nào năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> </div> </div> </div> </div><!-- end media --> <div class="media media-card rounded-0 shadow-none mb-0 bg-transparent py-4 px-0 border-bottom border-bottom-gray"> <div class="media-image"> <a href="/pho-chanh-van-phong-bo-cong-an-la-ai-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/MpiMl-FJvjI/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAOO5pKa8HDZ8Wva_PDnfJ_YKb9Ow" alt="Phó chánh văn phòng bộ công an là ai năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/pho-chanh-van-phong-bo-cong-an-la-ai-nam-2024">Phó chánh văn phòng bộ công an là ai năm 2024</a></h5> <p class="mb-2 truncate lh-20 fs-15"></p> <div class="media media-card questionTags user-media px-0 border-bottom-0 pb-0"> <div class="tags"> <a href="/tags/mẹo hay" class="tag-link">mẹo hay</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Là ai" class="tag-link">Là ai</a> </div> </div> </div> </div><!-- end media --> </div> </div></div> </div> </div> </div><!-- end question-main-bar --> </div><!-- end col-lg-9 --> <div class="postContentRight"> <div class="sidebar"> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-13 pb-3 text-center">Quảng Cáo</h4> <div class="mb-4 mx-auto" style="text-align:center"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4987931798153631" data-ad-slot="8742637402" data-ad-format="auto" data-full-width-responsive="true"> </ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Có thể bạn quan tâm</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/169-2-tran-van-dang-phuong-11-quan-3-tp-nam-2024">169 2 trần văn đang phường 11 quận 3 tp năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/TemporalReassurance" class="author">TemporalReassurance</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/ke-toan-cong-ty-thuong-mai-can-lam-nhung-gi-nam-2024">Kế toán công ty thương mại cần làm những gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/PompousStairway" class="author">PompousStairway</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/loi-note-3-thuong-xuyen-tu-dong-tat-ngupn-nam-2024">Lỗi note 3 thuong xuyen tu dong tat ngupn năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/EntrenchedSorcery" class="author">EntrenchedSorcery</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/viet-mot-bai-van-bieu-cam-ve-me-nam-2024">Viết một bài văn biểu cảm về mẹ năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/UntowardWidth" class="author">UntowardWidth</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bai-quyen-tap-noi-cong-taekwondo-bai-so-19-nam-2024">Bài quyền tập nội công taekwondo bài số 19 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/SkimpyOutfield" class="author">SkimpyOutfield</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/ma-hoa-file-config-khi-chuyen-sang-may-khac-nam-2024">Mã hóa file config khi chuyển sang máy khác năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ClumsyMeasurement" class="author">ClumsyMeasurement</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/kee-hoach-su-dung-dat-do-cap-nao-ban-hanh-nam-2024">Keế hoạch sử dụng đất do cấp nào ban hành năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/GoldPairing" class="author">GoldPairing</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/hach-toan-mua-hang-theo-nhieu-hoa-don-nam-2024">Hách toán mua hàng theo nhiều hóa đơn năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/HeathenRetirement" class="author">HeathenRetirement</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toi-uu-hoa-card-nvidia-de-choi-game-nam-2024">Tối ưu hóa card nvidia để chơi game năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/SensationalDelirium" class="author">SensationalDelirium</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/giai-sach-bai-tap-tieng-anh-lop-6-trang-9-nam-2024">Giải sách bài tập tiếng anh lớp 6 trang 9 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DaringHearts" class="author">DaringHearts</a> </small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="card card-item cardTopList"> <div class="card-body"> <h3 class="fs-17 pb-3">Toplist được quan tâm</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="topListNum">#1</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-tap-ban-do-lop-8-bai-31-2023">Top 9 tập bản đồ lớp 8 bài 31 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#2</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-6-ket-qua-thi-hsg-da-nang-2022-2023">Top 6 kết quả thi hsg đà nẵng 2022 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#3</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-tu-nhua-dai-loan-4-canh-3d-2023">Top 9 tủ nhựa đài loan 4 cánh 3d 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#4</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-chat-khi-co-the-lam-mat-mau-dung-dich-nuoc-brom-la-a-so2-b-co2-c-o2-d-hcl-2023">Top 9 chất khí có thể làm mất màu dung dịch nước brom là: a. so2. b. co2. c. o2. d. hcl. 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#5</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-8-tim-viec-lam-tien-phay-bao-q7-2023">Top 8 tìm việc làm tiện, phay bảo q7 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#6</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-3-toi-xuyen-thanh-tieu-kieu-the-cua-lao-dai-phan-2-2023">Top 3 tôi xuyên thành tiểu kiều the của lão đại phản 2 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#7</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-9-doi-moi-phong-cach-thai-do-phuc-vu-cua-can-bo-y-te-huong-toi-su-hai-long-cua-nguoi-benh-2023">Top 9 đổi mới phong cách, thái độ phục vụ của cán bộ y tế hướng tới sự hài lòng của người bệnh 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#8</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-2-bai-the-duc-phat-trien-chung-lop-6-2022-2023">Top 2 bài the dục phát triển chung lớp 6 2022 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="topListNum">#9</div> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/toplist-top-3-bai-giang-vu-dieu-sac-mau-lop-4-2023">Top 3 bài giảng vũ điệu sắc màu (lớp 4) 2023</a></h5> <small class="meta text-right">6 tháng trước</small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4> <div class="mb-4 mx-auto"> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:600px" data-ad-client="ca-pub-" data-ad-slot="" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="card card-item"> <div class="card-body"> <h3 class="fs-17 pb-3">Xem Nhiều</h3> <div class="divider"><span></span></div> <div class="sidebar-questions pt-3"> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/top-tuong-di-mid-xanh-ganh-ca-team-nam-2024">Top tướng đi mid xanh gánh cả team năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DistortedAuspices" class="author">DistortedAuspices</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/baan-mieng-dan-apple-watch-le-van-sy-nam-2024">Baán miếng dán apple watch le văn sỹ năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DisappointedProceedings" class="author">DisappointedProceedings</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bai-tap-di-truyen-lien-ket-sinh-9-nam-2024">Bài tập di truyền liên kết sinh 9 năm 2024</a></h5> <small class="meta"> <span class="pr-1">3 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/MediumMovie" class="author">MediumMovie</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/thu-khac-phuc-loi-google-chrome-hay-bi-treo-nam-2024">Thử khắc phục lỗi google chrome hay bị treo năm 2024</a></h5> <small class="meta"> <span class="pr-1">3 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DiscernibleShaving" class="author">DiscernibleShaving</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cac-bai-toan-so-sanh-nang-cao-lop-6-nam-2024">Các bài toán so sánh nâng cao lớp 6 năm 2024</a></h5> <small class="meta"> <span class="pr-1">11 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/OrnamentalRoadblock" class="author">OrnamentalRoadblock</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/how-i-met-your-mother-top-rated-episodes-imdb-nam-2024">How i met your mother top rated episodes imdb năm 2024</a></h5> <small class="meta"> <span class="pr-1">15 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/CorruptHelping" class="author">CorruptHelping</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/giai-bai-22-trang-95-toan-10-nang-cao-hinh-nam-2024">Giải bài 22 trang 95 toán 10 nâng cao hình năm 2024</a></h5> <small class="meta"> <span class="pr-1">2 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/InwardBending" class="author">InwardBending</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/bang-phuong-phap-hoa-hoc-hay-nhan-biet-na-p2o5-nam-2024">Bằng phương pháp hóa học hãy nhận biết na p2o5 năm 2024</a></h5> <small class="meta"> <span class="pr-1">11 giờ trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/EvangelicalSpectacle" class="author">EvangelicalSpectacle</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/top-xe-47-cho-xin-nhat-ha-noi-nam-2024">Top xe 47 chỗ xịn nhất hà nội năm 2024</a></h5> <small class="meta"> <span class="pr-1">5 ngày trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/ThermalDealing" class="author">ThermalDealing</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://biquyetxaynha.com/cac-dang-bai-tap-nang-cao-dai-9-ki-2-nam-2024">Các dang bài tập nâng cao đại 9 kì 2 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> <span class="pr-1">. bởi</span> <a href="https://biquyetxaynha.com/author/DisdainfulExtinction" class="author">DisdainfulExtinction</a> </small> </div> </div><!-- end media --> </div><!-- end sidebar-questions --> </div> </div><!-- end card --> <div class="ad-card"> <h4 class="text-gray text-uppercase fs-14 pb-3 pb-3 text-center">Quảng cáo</h4> <div class="mb-4 mx-auto" style=" text-align: center"> <div id='div-gpt-ad-1657246837997-0' style='min-width: 300px; min-height: 600px;'> <script> googletag.cmd.push(function() { googletag.display('div-gpt-ad-1657246837997-0'); }); </script> </div> </div> </div> </div><!-- end sidebar --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end question-area --> <!-- ================================ END QUESTION AREA ================================= --> <script>var questionId ='huong-dan-wordpress-custom-functions-php'</script> <script>var postTime ='2022-09-16T20:04:45.371Z'</script> <script>var siteDomain ='biquyetxaynha.com'</script> <script type="text/javascript" src="https://biquyetxaynha.com/dist/js/pages/comment.js"></script> <!-- ================================ END FOOTER AREA ================================= --> <section class="footer-area pt-80px bg-dark position-relative"> <span class="vertical-bar-shape vertical-bar-shape-1"></span> <span class="vertical-bar-shape vertical-bar-shape-2"></span> <span class="vertical-bar-shape vertical-bar-shape-3"></span> <span class="vertical-bar-shape vertical-bar-shape-4"></span> <div class="container"> <div class="row"> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Chúng tôi</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/about.html">Giới thiệu</a></li> <li><a href="/contact.html">Liên hệ</a></li> <li><a href="/contact.html">Tuyển dụng</a></li> <li><a href="/contact.html">Quảng cáo</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Điều khoản</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/privacy-statement.html">Điều khoản hoạt động</a></li> <li><a href="/terms-and-conditions.html">Điều kiện tham gia</a></li> <li><a href="/privacy-statement.html">Quy định cookie</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Trợ giúp</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="/contact.html">Hướng dẫn</a></li> <li><a href="/contact.html">Loại bỏ câu hỏi</a></li> <li><a href="/contact.html">Liên hệ</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> <div class="col-lg-3 responsive-column-half"> <div class="footer-item"> <h3 class="fs-18 fw-bold pb-2 text-white">Mạng xã hội</h3> <ul class="generic-list-item generic-list-item-hover-underline pt-3 generic-list-item-white"> <li><a href="#"><i class="fab fa-facebook-f mr-1"></i> Facebook</a></li> <li><a href="#"><i class="fab fa-twitter mr-1"></i> Twitter</a></li> <li><a href="#"><i class="fab fa-linkedin mr-1"></i> LinkedIn</a></li> <li><a href="#"><i class="fab fa-instagram mr-1"></i> Instagram</a></li> </ul> </div><!-- end footer-item --> </div><!-- end col-lg-3 --> </div><!-- end row --> </div><!-- end container --> <hr class="border-top-gray my-5"> <div class="container"> <div class="row align-items-center pb-4 copyright-wrap"> <div class="col-6"> <a href="//www.dmca.com/Protection/Status.aspx?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" title="DMCA.com Protection Status" class="dmca-badge"> <img src ="https://images.dmca.com/Badges/dmca_protected_sml_120am.png?ID=33e5dca6-f8c5-4c6f-b8e6-a247229d2953" width="123px" height="21px" alt="DMCA.com Protection Status" /></a> <script src="https://images.dmca.com/Badges/DMCABadgeHelper.min.js"> </script> </div> <!-- end col-lg-6 --><div class="col-6"> <div class="copyright-desc text-right fs-14"> <div>Bản quyền © 2021 <a href="https://biquyetxaynha.com">Xây Nhà</a> Inc.</div> </div> </div><!-- end col-lg-6 --> </div><!-- end row --> </div><!-- end container --> </section><!-- end footer-area --> <!-- ================================ END FOOTER AREA ================================= --><script> $( document ).ready(function() { setTimeout(showMoreButton, 3000); function showMoreButton(){ let minheight = 1000; minheight = parseInt($("#entryContent").innerHeight())/3; $("#entryContent").css('min-height', minheight).css('max-height', minheight).css('overflow', 'hidden'); $("#readmore_content").click(function(){ $("#entryContent").css('min-height', '').css('max-height', '').css('overflow', ''); $(".readmore_content_exists").css('display', 'none'); }) } }); </script> <!-- template js files --> <!-- start back to top --> <div id="back-to-top" data-toggle="tooltip" data-placement="top" title="Lên đầu trang"> <img alt="" src="/dist/images/svg/arrow-up_20.svg"> </div> <!-- end back to top --> <script src="https://biquyetxaynha.com/dist/js/bootstrap.bundle.min.js"></script> <script src="https://biquyetxaynha.com/dist/js/moment.js"></script> <script src="https://biquyetxaynha.com/dist/js/read-more.min.js"></script> <script src="https://biquyetxaynha.com/dist/js/main.js?v=6"></script> <!-- Google Tag Manager (noscript) --> <script type="text/javascript"> (function(c,l,a,r,i,t,y){ c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); })(window, document, "clarity", "script", "jxuz46z39u"); </script> </body> </html> <script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="e65f51bde1c50f10c02534f6-|49" defer></script>