Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

commit version 1.4.5 #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Disable Feeds for WordPress

This is the development respository for the [Disable Feeds](http://wordpress.org/extend/plugins/disable-feeds/) WordPress plugin. Send pull requests here, download the latest stable version there!
This is the development respository for the [Disable Feeds](https://wordpress.org/plugins/disable-feeds/) WordPress plugin. Send pull requests here, download the latest stable version there!

Version and compatibility information can be found in the plugin [readme](https://github.com/solarissmoke/disable-feeds/blob/master/readme.txt) file.

Expand Down
4 changes: 2 additions & 2 deletions disable-feeds.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Disable Feeds
Plugin URI: https://wordpress.org/plugins/disable-feeds/
Description: Disable all RSS/Atom feeds on your WordPress site.
Version: 1.4.4
Version: 1.4.5
Author: Samir Shah, BBpress support by Matthew Sigley
Author URI: http://rayofsolaris.net/
License: GPLv2 or later
Expand Down Expand Up @@ -42,7 +42,7 @@ public function register_text_domain() {
}

function admin_setup() {
add_settings_field( 'disable_feeds_redirect', 'Disable Feeds Plugin', array( $this, 'settings_field' ), 'reading' );
add_settings_field( 'disable_feeds_redirect', __('Disable Feeds Plugin', 'disable-feeds' ), array( $this, 'settings_field' ), 'reading' );
register_setting( 'reading', 'disable_feeds_redirect' );
register_setting( 'reading', 'disable_feeds_allow_main' );
}
Expand Down
10 changes: 8 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
=== Disable Feeds ===
Contributors: solarissmoke
Tags: disable, rss, atom, rdf, feeds
Requires at least: 4.0
Tested up to: 4.9
Requires at least: 4.9
Tested up to: 6.1
Stable tag: trunk

Disables all RSS/Atom/RDF feeds on your WordPress site.

== Description ==

Forked from [solarissmoke](https://github.com/solarissmoke/disable-feeds) to show compatibility with current WP versions.

This plugin disables all RSS/Atom/RDF feeds on your site. It is useful if you use WordPress purely as a content management system (and not for blogging). All requests for feeds will be redirected to the corresponding HTML content.

There are a couple of options to tweak the plugin's behaviour - go to `Settings -> Reading` to see them.
Expand Down Expand Up @@ -37,6 +39,10 @@ In `Settings -> Reading` you will find an option to allow global feeds. All othe

== Changelog ==

= 1.4.5 =
* Forked from [solarissmoke](https://github.com/solarissmoke/disable-feeds) as plugin hasn't been updated for 5+ years
* show compatibility with current versions of WP

= 1.4.4 =
* Add translation support.

Expand Down