Hướng dẫn function php wordpress




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 function php wordpress


/**
@ 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 function php wordpress

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 function php wordpress

}

Đ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 function php wordpress

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 function php wordpress


/*
* 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 function php wordpress" data-orgimg="https://sg.cdnki.com/huong-dan-function-php-wordpress---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA4L2Jhbm5lcjIuOTIwMjItNzI4eDkwLTEucG5n.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 function php wordpress" data-orgimg="https://sg.cdnki.com/huong-dan-function-php-wordpress---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA4L2Jhbm5lcjIuOTIwMjItNzI4eDkwLTEucG5n.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 function php wordpress" data-orgimg="https://sg.cdnki.com/huong-dan-function-php-wordpress---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA4L2Jhbm5lcjIuOTIwMjItNzI4eDkwLTEucG5n.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 function php wordpress" data-orgimg="https://sg.cdnki.com/huong-dan-function-php-wordpress---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA4L2Jhbm5lcjIuOTIwMjItNzI4eDkwLTEucG5n.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 function php wordpress" data-orgimg="https://sg.cdnki.com/huong-dan-function-php-wordpress---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA4L2Jhbm5lcjIuOTIwMjItNzI4eDkwLTEucG5n.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 function php wordpress" data-orgimg="https://sg.cdnki.com/huong-dan-function-php-wordpress---aHR0cHM6Ly90aGFjaHBoYW0uY29tL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDIyLzA4L2Jhbm5lcjIuOTIwMjItNzI4eDkwLTEucG5n.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> <div style="padding:10px 0px;text-align:center"><div class="addthis_inline_share_toolbox"></div></div> <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/_BWhiHNd5Zo?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://ihoctot.com/tags/programming" class="tag-link">programming</a> <a href="https://ihoctot.com/tags/php" class="tag-link">php</a> <a href="https://ihoctot.com/tags/Code PHP WordPress" class="tag-link">Code PHP WordPress</a> <a href="https://ihoctot.com/tags/Header PHP WordPress" class="tag-link">Header PHP WordPress</a> <a href="https://ihoctot.com/tags/Function WordPress PHP" class="tag-link">Function WordPress PHP</a> </div> </div> <div class="post-tools"> <button data-postid="huong-dan-function-php-wordpress" class="btn btn-answerModalBox"><img class="mr-1" alt="Hướng dẫn function php wordpress" src="/dist/images/svg/messages_16.svg">Reply</button> <button data-postid="huong-dan-function-php-wordpress" data-vote="up" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn function php wordpress" src="/dist/images/svg/face-smile_16.svg">2</button> <button data-postid="huong-dan-function-php-wordpress" data-vote="down" class="btn btn-doVote"><img class="mr-1" alt="Hướng dẫn function php wordpress" src="/dist/images/svg/poo_16.svg">0</button> <button class="btn"><img class="mr-1" alt="Hướng dẫn function php wordpress" 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-function-php-wordpress" 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="/tim-hieu-chung-ve-van-ban-nghi-luan-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/Gpk88R_jN2Y/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLDpeZxxX87bxXrlXgHOo4TtcccaEg" alt="Tìm hiểu chung về văn bản nghị luận năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/tim-hieu-chung-ve-van-ban-nghi-luan-nam-2024">Tìm hiểu chung về văn bản nghị luậ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="/su-ly-loi-khong-lang-duoc-chuot-trong-sketchup-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/mDl_NZk5Ypo/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4AcQGgALQBYoCDAgAEAEYZSBdKEgwDw==&rs=AOn4CLAXZ4SynrslaWIl_fQMER5KsJ0TJA" alt="Sử lý lỗi không lăng được chuột trong sketchup năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/su-ly-loi-khong-lang-duoc-chuot-trong-sketchup-nam-2024">Sử lý lỗi không lăng được chuột trong sketchup 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/Công Nghệ" class="tag-link">Công Nghệ</a> <a href="/tags/Chuột" class="tag-link">Chuột</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-tim-hang-so-can-bang-hoa-11-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/1IDDLw2Uw4k/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDamgTrnct1xENuxvcsEQhyYsIWrw" alt="Bài tập tìm hằng số cân bằng hoá 11 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/bai-tap-tim-hang-so-can-bang-hoa-11-nam-2024">Bài tập tìm hằng số cân bằng hoá 11 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="/ban-khoan-co-nghia-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/ubVAF1KM3Qk/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLC__ewqtm2sWUU5XDYYhYSseqjv_A" alt="Băn khoăn có nghĩa là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/ban-khoan-co-nghia-la-gi-nam-2024">Băn khoăn có nghĩa 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/là ai" class="tag-link">là ai</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> <a href="/tags/Ngôn ngữ" class="tag-link">Ngôn ngữ</a> <a href="/tags/Nghĩa là gì" class="tag-link">Nghĩa 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="/he-so-luong-178-tuong-ung-ngach-nao-nam-1996-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/GtY4_U6IID8/hqdefault.jpg?sqp=-oaymwEjCOADEI4CSFryq4qpAxUIARUAAAAAGAElAADIQj0AgKJDeAE=&rs=AOn4CLBtxWU-5f1gupy1cNZ0_Bq3QbZ38A" alt="Hệ số lương 1.78 tương ứng ngạch nào năm 1996 năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/he-so-luong-178-tuong-ung-ngach-nao-nam-1996-nam-2024">Hệ số lương 1.78 tương ứng ngạch nào năm 1996 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="/banh-rau-cau-sinh-nhat-chua-bao-nhieu-calo-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/bzMqApMZzs4/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4AYwCgALgA4oCDAgAEAEYNSBlKEwwDw==&rs=AOn4CLBTNOA_UiwlIabd9lGw2U7dOynbiQ" alt="Bánh rau câu sinh nhật chứa bao nhiêu calo năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/banh-rau-cau-sinh-nhat-chua-bao-nhieu-calo-nam-2024">Bánh rau câu sinh nhật chứa bao nhiêu calo 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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</a> <a href="/tags/Món Ngon" class="tag-link">Món Ngon</a> <a href="/tags/Bánh" class="tag-link">Bánh</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="/ho-tieng-nhat-cua-ban-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/xkYtDA5XcdI/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAl3wSl_QL8pEc46JKs59gZh9Lqmg" alt="Họ tiếng nhật của bạn là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/ho-tieng-nhat-cua-ban-la-gi-nam-2024">Họ tiếng nhật của bạn 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/là ai" class="tag-link">là ai</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="/y-nghia-cua-header-from-top-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/WWpR9Rw_QQI/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4AYoGgALCA4oCDAgAEAEYWSBdKGUwDw==&rs=AOn4CLAnun5phP5ajLMYugOk6fdmiBc_Vg" alt="Ý nghĩa của header from top là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/y-nghia-cua-header-from-top-la-gi-nam-2024">Ý nghĩa của header from top 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> <a href="/tags/Top List" class="tag-link">Top List</a> <a href="/tags/Top" class="tag-link">Top</a> <a href="/tags/Header la gì" class="tag-link">Header la gì</a> <a href="/tags/Footer la gì" class="tag-link">Footer la 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="/tu-hoc-tieng-anh-nhu-the-nao-hieu-qua-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/-_iqv8e1yww/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAe-wP9CXq33g3_rae_LB8YogSj7A" alt="Tự học tiếng anh như thế nào hiệu quả năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/tu-hoc-tieng-anh-nhu-the-nao-hieu-qua-nam-2024">Tự học tiếng anh như thế nào hiệu quả 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> <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/Tiếng anh" class="tag-link">Tiếng anh</a> <a href="/tags/Học tiếng Anh" class="tag-link">Học tiếng Anh</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="/co-the-con-nguoi-nam-hien-mau-bao-nhieu-lan-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/K69UxItBZfE/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Af4JgALQBYoCDAgAEAEYEyBFKH8wDw==&rs=AOn4CLCFH3tx2oDoPysVUZSqRVdb4-kvtw" alt="Cơ thể con người năm hiến máu bao nhiêu lần năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/co-the-con-nguoi-nam-hien-mau-bao-nhieu-lan-nam-2024">Cơ thể con người năm hiến máu bao nhiêu lầ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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</a> <a href="/tags/Khỏe Đẹp" class="tag-link">Khỏe Đẹp</a> <a href="/tags/Cơ thể" class="tag-link">Cơ thể</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="/tuoi-dinh-mao-xay-nha-nam-nao-tot-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/iejfpp96XkM/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAxMQXIXMhwrFiK6MdB7Q5r0ZjK-g" alt="Tuổi đinh mão xây nhà năm nào tốt năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/tuoi-dinh-mao-xay-nha-nam-nao-tot-nam-2024">Tuổi đinh mão xây nhà năm nào tố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/Xây Đựng" class="tag-link">Xây Đựng</a> <a href="/tags/Xây" class="tag-link">Xây</a> <a href="/tags/Nhà" class="tag-link">Nhà</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="/khoan-chi-den-san-pham-cuoi-cung-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/B62H4yfsqKY/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDLcLFXSGXQYF3-bpD-kNcaXGQu1A" alt="Khoán chi đến sản phẩm cuối cùng là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/khoan-chi-den-san-pham-cuoi-cung-la-gi-nam-2024">Khoán chi đến sản phẩm cuối cùng 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/là ai" class="tag-link">là ai</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="/cac-yeu-to-cau-thanh-van-hoa-to-chuc-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/LK5VfvlRL9k/hqdefault.jpg?sqp=-oaymwE9COADEI4CSFryq4qpAy8IARUAAAAAGAElAADIQj0AgKJDeAHwAQH4AdQGgALgA4oCDAgAEAEYMyBWKHIwDw==&rs=AOn4CLC-AjOro_vAllaABoLDl5zknVuhZA" alt="Các yếu tố cấu thành văn hóa tổ chức năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/cac-yeu-to-cau-thanh-van-hoa-to-chuc-nam-2024">Các yếu tố cấu thành văn hóa tổ chức 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="/the-nao-la-so-vo-ti-cho-vi-du-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/hrQSrWfpLr8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLA2fFeYYgZxlt3x2qaLK0t-6nxNKg" alt="Thế nào là số vô tỉ cho ví dụ năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/the-nao-la-so-vo-ti-cho-vi-du-nam-2024">Thế nào là số vô tỉ cho ví dụ 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> <a href="/tags/Ví dụ" class="tag-link">Ví dụ</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="/qua-trung-thu-tieng-anh-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/rnuhrB1N_Kg/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLDZxmkHLrg9VP-9nel7cwnswY5qlQ" alt="Quà trung thu tiếng anh là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/qua-trung-thu-tieng-anh-la-gi-nam-2024">Quà trung thu tiếng anh 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/là ai" class="tag-link">là ai</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> <a href="/tags/Học Tốt" class="tag-link">Học Tốt</a> <a href="/tags/Tiếng anh" class="tag-link">Tiếng anh</a> <a href="/tags/Mid-Autumn gift" class="tag-link">Mid-Autumn gift</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="/de-mo-toi-da-duoc-bao-nhieu-lan-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/d2zy0vPYDtg/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLA2BDKPpR0LnG_Fizlp0smHtRfn3g" alt="Đẻ mổ tối đa được bao nhiêu lần năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/de-mo-toi-da-duoc-bao-nhieu-lan-nam-2024">Đẻ mổ tối đa được bao nhiêu lầ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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</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="/thiet-ke-quan-tra-sua-bao-nhieu-tien-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/5i7-KUbQta8/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLC8ln7fnLRSUyCyN8yDzYSmS3l-aw" alt="Thiết kế quán trà sữa bao nhiêu tiền năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/thiet-ke-quan-tra-sua-bao-nhieu-tien-nam-2024">Thiết kế quán trà sữa bao nhiêu tiề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/bao nhieu" class="tag-link">bao nhieu</a> <a href="/tags/Hỏi Đáp" class="tag-link">Hỏi Đáp</a> <a href="/tags/Bao nhiêu" class="tag-link">Bao nhiêu</a> <a href="/tags/Món Ngon" class="tag-link">Món Ngon</a> <a href="/tags/Trà sữa" class="tag-link">Trà sữa</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="/top-nuoc-hoa-hong-se-khit-lo-chan-long-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/OaoYrcKqp-w/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLBJj8_k5gkuPDJyVxuRD_8BNt0NYA" alt="Top nước hoa hồng se khít lỗ chân lông năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/top-nuoc-hoa-hong-se-khit-lo-chan-long-nam-2024">Top nước hoa hồng se khít lỗ chân lô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> <a href="/tags/Top List" class="tag-link">Top List</a> <a href="/tags/Top" class="tag-link">Top</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-noi-chien-khong-dau-philips-tieng-keu-rat-to-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/e-DX7MdB9yE/hq720.jpg?sqp=-oaymwExCNAFEJQDSFryq4qpAyMIARUAAIhCGAHwAQH4Ac4FgAKACooCDAgAEAEYTyBXKGUwDw==&rs=AOn4CLD8sA5D7M1Nqkf_gGVlaRaEZd8ALA" alt="Lỗi nồi chiên không dầu philips tiếng kêu rất to năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/loi-noi-chien-khong-dau-philips-tieng-keu-rat-to-nam-2024">Lỗi nồi chiên không dầu philips tiếng kêu rất to 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="/daylight-is-coming-like-a-rentless-milkman-upstairs-la-gi-nam-2024"><img src="/dist/images/waiting.svg" width="200px" height="100px" data-orgimg="https://i.ytimg.com/vi/RYoUm3PQorU/hq720.jpg?sqp=-oaymwEXCNAFEJQDSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLAR6bqqazEk7s6IrkxiJjbeVaDY_g" alt="Daylight is coming like a rentless milkman upstairs là gì năm 2024"></a> </div> <div class="media-body"> <h5 class="mb-2 fw-medium"><a href="/daylight-is-coming-like-a-rentless-milkman-upstairs-la-gi-nam-2024">Daylight is coming like a rentless milkman upstairs 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/là ai" class="tag-link">là ai</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> </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://ihoctot.com/bong-den-cuc-tim-1m2-cong-suat-bao-nhieu-watt-nam-2024">Bóng đèn cực tím 1m2 công suất bao nhiêu watt năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/TrackingTrilogy" class="author">TrackingTrilogy</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/co-so-cua-gia-tri-hang-hoa-la-gi-nam-2024">Cơ sở của giá trị hàng hóa là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/Fast-foodLineage" class="author">Fast-foodLineage</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/cach-sua-loi-trong-speakers-properties-ko-hien-enhancement-nam-2024">Cách sửa lỗi trong speakers properties ko hiện enhancement năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/MilitaryTracing" class="author">MilitaryTracing</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/giai-bai-tap-toan-lop-5-tap-2-bai-163-nam-2024">Giải bài tập toán lớp 5 tập 2 bài 163 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/ThoughtlessEnclosure" class="author">ThoughtlessEnclosure</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/miracle-in-cell-number-7-review-nam-2024">Miracle in cell number 7 review năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/UndeniableFiring" class="author">UndeniableFiring</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/muc-tieu-bai-hoc-chi-tiet-danh-gia-duoc-nam-2024">Mục tiêu bài học chi tiết đánh giá được năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/ThunderousFlask" class="author">ThunderousFlask</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/asias-next-top-model-5-tap-6-nam-2024">Asias next top model 5 tap 6 năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/HorribleBattling" class="author">HorribleBattling</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/cau-go-lim-hue-bao-nhieu-tien-nam-2024">Cầu gỗ lim huế bao nhiêu tiền năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/YieldingSwimmer" class="author">YieldingSwimmer</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/can-bang-sinh-hoc-la-gi-cho-vi-du-nam-2024">Cân bằng sinh học là gì cho ví dụ năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/UmbilicalProceeding" class="author">UmbilicalProceeding</a> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/tong-hop-kien-thuc-toan-on-thi-dai-hoc-nam-2024">Tổng hợp kiến thức toán ôn thi đại học năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tháng trước</span> <span class="pr-1">. bởi</span> <a href="https://ihoctot.com/author/ImpossibleEquation" class="author">ImpossibleEquation</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://ihoctot.com/toplist-top-7-su-tich-ho-guom-ngu-van-lop-6-2023">Top 7 sự tích hồ gươm - ngữ văn lớp 6 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-7-gdcd-6-bai-1-ket-noi-tri-thuc-2023">Top 7 gdcd 6 bài 1 kết nối tri thức 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-7-y-nghia-cua-xay-dung-gia-dinh-van-hoa-2023">Top 7 ý nghĩa của xây dựng gia đình văn hóa 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-6-mau-hop-dong-muon-dat-lam-nha-xuong-2023">Top 6 mẫu hợp đồng mượn đất làm nhà xưởng 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-3-tong-tai-bien-thai-toi-yeu-anh-tap-27-2023">Top 3 tổng tài biến thái tôi yêu anh tập 27 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-6-ket-thuc-phim-my-nhan-vo-le-2023">Top 6 kết thực phim mỹ nhân vô lệ 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-9-trong-nhung-cau-tho-sau-cau-nao-su-dung-thanh-ngu-2023">Top 9 trong những câu thơ sau câu nào sử dụng thành ngữ 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-8-de-tai-va-chu-de-cua-tac-pham-tat-den-2023">Top 8 đề tài và chủ de của tác phẩm tắt đèn 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/toplist-top-5-tieu-su-cua-thay-thich-phap-hoa-2023">Top 5 tiểu sử của thầy thích pháp hòa 2023</a></h5> <small class="meta text-right">5 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://ihoctot.com/he-so-luong-178-tuong-ung-ngach-nao-nam-1996-nam-2024">Hệ số lương 1.78 tương ứng ngạch nào năm 1996 năm 2024</a></h5> <small class="meta"> <span class="pr-1">5 ngày trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/banh-rau-cau-sinh-nhat-chua-bao-nhieu-calo-nam-2024">Bánh rau câu sinh nhật chứa bao nhiêu calo năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/tu-hoc-tieng-anh-nhu-the-nao-hieu-qua-nam-2024">Tự học tiếng anh như thế nào hiệu quả năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/tuoi-dinh-mao-xay-nha-nam-nao-tot-nam-2024">Tuổi đinh mão xây nhà năm nào tốt năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/bai-tap-tim-hang-so-can-bang-hoa-11-nam-2024">Bài tập tìm hằng số cân bằng hoá 11 năm 2024</a></h5> <small class="meta"> <span class="pr-1">3 ngày trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/khoan-chi-den-san-pham-cuoi-cung-la-gi-nam-2024">Khoán chi đến sản phẩm cuối cùng là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/ho-tieng-nhat-cua-ban-la-gi-nam-2024">Họ tiếng nhật của bạn là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 tuần trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/ban-khoan-co-nghia-la-gi-nam-2024">Băn khoăn có nghĩa là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">4 ngày trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/tim-hieu-chung-ve-van-ban-nghi-luan-nam-2024">Tìm hiểu chung về văn bản nghị luận năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> </small> </div> </div><!-- end media --> <div class="media media-card media--card media--card-2"> <div class="media-body"> <h5><a href="https://ihoctot.com/anh-bo-doi-cu-ho-goc-bi-la-gi-nam-2024">Anh bộ đội cụ hồ gốc bỉ là gì năm 2024</a></h5> <small class="meta"> <span class="pr-1">1 ngày trước</span> </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-function-php-wordpress'</script> <script>var postTime ='2022-09-11T03:23:42.409Z'</script> <script>var siteDomain ='ihoctot.com'</script> <script type="text/javascript" src="https://ihoctot.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://ihoctot.com">Học Tốt</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, 1000); function showMoreButton(){ let minheight = 1000; let min_height = parseInt($("#entryContent").innerHeight())/3; if (min_height < minheight) min_height = minheight; $("#entryContent").css('min-height', min_height).css('max-height', min_height).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://ihoctot.com/dist/js/bootstrap.bundle.min.js"></script> <script src="https://ihoctot.com/dist/js/moment.js"></script> <script src="https://ihoctot.com/dist/js/read-more.min.js"></script> <script src="https://ihoctot.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", "kc7zn73k3m"); </script> <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=G-VQQBEDXD05"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-VQQBEDXD05'); </script> </body> </html> <script src="/cdn-cgi/scripts/7d0fa10a/cloudflare-static/rocket-loader.min.js" data-cf-settings="a3e527186c44ea7197a2254d-|49" defer></script>