Plugins:
Plugin Rank math SEO >>>Tải ở đây
WPCode – Insert Headers and Footers + Custom Code Snippets – WordPress Code Manager >>>Tải tại đây
Tải Plugin Fixed TOC Premium >>>Tải tại đây
Bottom Content Catalogy wordprss >>>Tải tại đây
Plugin Image Watermark >>> Tải tại đây
Plugin gắn thẻ Alt >>> Tải tại đây
Website và công cụ hỗ trợ:
Hỗ trợ viết Schema: https://app.sonatools.io/schema-generator
Chấm điểm SEO website: https://ngheseo.vn/reports
Kiểm tra PageSpeed Insights với Google: https://pagespeed.web.dev/
CODE(code này sẽ tùy thuộc vào phiên bản WP):
// Shortcode hiển thị content ở đầu danh sách bài viết (chỉ trên blog page)
function add_shortcode_before_blog_list() {
if ( is_home() || is_post_type_archive('post') ) {
echo '<div class="custom-shortcode-wrapper shortcode-before title-news">';
echo '<h1>Tin tức và sự kiện Hi-Den HeatTech</h1>';
echo '</div>';
}
}
add_action( 'flatsome_before_blog', 'add_shortcode_before_blog_list', 10 );
// Shortcode hiển thị content ở cuối danh sách bài viết (chỉ trên blog page)
function add_shortcode_after_blog_loop() {
if ( is_home() || is_post_type_archive('post') ) {
echo '<div class="custom-shortcode-wrapper">';
echo do_shortcode('[block id="tin-tuc-va-su-kien-content"]');
echo '</div>';
}
}
add_action( 'flatsome_after_blog', 'add_shortcode_after_blog_loop', 1000);