Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/vinascript/html/wp-includes/functions.php on line 6114
Vô hiệu hóa RSS Feed trên WordPress - VinaScript

Latest Post

Triển khai dự án PHP, Mysql với Nginx trên Docker Tìm hiểu về HTML – Ưu điểm, nhược điểm và cách hoạt động của HTML

Hôm nay, khi tôi mở Google Search Console, tôi nhận thấy rằng trang web của mình đã bị kẻ xấu tận dụng chức năng tìm kiếm và RSS Feed trên nền tảng WordPress để đưa vào danh sách các liên kết xấu trong index. Do đó, tôi đã quyết định vô hiệu hóa tính năng RSS Feed trên WordPress để giải quyết vấn đề này. Có hai cách thực hiện điều này:

Vô hiệu hóa RSS Feed bằng plugin

VD: Chúng ta có thể sử dụng plugin Remove RSS Feed để gỡ bỏ RSS Feed

Vào phần [ Plugins ] => [ Add New ] => Tìm kiếm với keywordRemove RSS Feed” và bấm vào [ Install Now ] để cài đặt.

Sau khi cài đặt và kích hoạt plugin trên. Chúng ta đã remove đc RSS Feed.

Vô hiệu hóa RSS Feed sử dụng code.

Code bạn có thêm tại file functions.php

<?php
function vinasupport_disable_feed() {
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: " . get_bloginfo('url'));
    exit();
}

add_action('do_feed', 'vinasupport_disable_feed', 1);
add_action('do_feed_rdf', 'vinasupport_disable_feed', 1);
add_action('do_feed_rss', 'vinasupport_disable_feed', 1);
add_action('do_feed_rss2', 'vinasupport_disable_feed', 1);
add_action('do_feed_atom', 'vinasupport_disable_feed', 1);
add_action('do_feed_rss2_comments', 'vinasupport_disable_feed', 1);
add_action('do_feed_atom_comments', 'vinasupport_disable_feed', 1);

Đoạn code trên sẽ xử lý bất cứ truy cập tới RSS Feed sẽ bị chuyển hướng tới trang chủ.

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *