You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+39-3Lines changed: 39 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,51 @@ While alternatives like [ClassicPress](https://classicpress.net), which is a ful
20
20
## Disabled features
21
21
**Perpetual WP** disables unnecessary features to keep the admin panel cleaner and improve performance.
22
22
23
+
||Description|
24
+
|--|--|
25
+
|`disable/hello-dolly`|Automatically deletes "Hello Dolly" from fresh installs. To use it, place it in `mu-plugins`.|
26
+
|`disable/initial-content`|Deletes the default content —"Hello world!", "Sample Page," and "Privacy Policy"—.|
27
+
|`disable/admin-email-verification`|Disable admin email verifications. For more details, [check this](https://make.wordpress.org/core/2019/10/17/wordpress-5-3-admin-email-verification-screen/).|
28
+
|`disable/capital-p-dangit`|Prevents "Wordpress" from being converted to "WordPress".|
29
+
|`disable/emojis`||
30
+
|`disable/generators`|
31
+
|`disable/oembed`|
32
+
|`disable/post-by-email`|
33
+
|`disable/post-revisions`|
34
+
|`disable/privacy-tools`|
35
+
|`disable/update-services`|
36
+
|`disable/wp-sitemaps`|
37
+
|`disable/xmlrpc`|
38
+
|`disable/import-export`|
39
+
|`disable/shortlinks`|
40
+
|`disable/guess-permalinks`|
41
+
|`disable/site-health`|Disables Site Health by default and makes it optional.|
42
+
|`disable/wpautop`|Prevent WordPress from adding extra `<p></p>` tags to the content.|
43
+
|`disable/wptexturize`|Avoid converting quotation marks `"` into symbols like `»`|
44
+
|`disable/wp-favicon`|Restores the default `/favicon.ico` behaviour when no site icon is present.|
45
+
23
46
### Prevent a feature from being disabled
24
-
WordPress use cases can vary greatly, and it’s possible that you may need some of the features that are disabled.
47
+
WordPress use cases can vary greatly, and it’s possible that you may need some of the features that are disabled by the plugin.
48
+
49
+
> [!NOTE]
50
+
> **Perpetual WP** honors your choices whenever possible. Depending on the feature, you will be able to directly modifying it in `Settings > General`, creating a constant in `wp-config.php` or just using the `pw_modules` filter.
25
51
26
-
**Perpetual WP** honors your choices whenever possible, and in other cases, you can modify the settings through wp-admin under `Settings > General`. For instance, while WordPress defaults to enabling post revisions with `WP_POST_REVISIONS` set to true, this plugin will automatically set it to `false` unless you specify a different value in your wp-config.php file.
52
+
For instance, while WordPress defaults to enabling post revisions with `WP_POST_REVISIONS` set to true, this plugin will automatically set it to `false` unless you define a different value in your `wp-config.php` file.
27
53
28
54
For any other cases, you can use the filter `pw_modules`. This allows you to disable any feature via a child theme or directly by other plugin developers, preventing undesired behaviours.
0 commit comments