Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Update readme file
  • Loading branch information
sanketio committed Aug 7, 2025
commit 2c6c42c9e77e1e7a72255fa577a6c01cbb8090f3
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,18 @@ When the 'Discourage search engines from indexing this site' option is enabled,

When this option is activated, it serves as a barrier to all visitors except those who are authenticated (logged in) or whose IP addresses are included in the 'Unrestricted IP addresses' setting. This restriction applies universally, even to automated crawlers such as search engines.

### How can I programmatically define default mode for the network?

In your `wp-config.php` file, you can define the following:

```php
define( 'RSA_NETWORK_MODE', 'enforce' );
```

There are only two values supported for this constant at the moment: **enforce** or **default**.

If it is set to be non-allowed value, then it will assume as **default**.

## Support Level

**Stable:** 10up is not planning to develop any new features for this, but will still respond to bug reports and security concerns. We welcome PRs, but any that include new features should be small and easy to integrate and should not include breaking changes. We otherwise intend to keep this tested up to the most recent version of WordPress.
Expand Down