log1x / acorn-disable-media-pages
Disable media attachment pages in WordPress.
Fund package maintenance!
Log1x
Installs: 46 803
Dependents: 0
Suggesters: 0
Security: 0
Stars: 20
Watchers: 2
Forks: 1
Type:package
Requires
- php: >=8.1
Requires (Dev)
- laravel/pint: ^1.13
This package is auto-updated.
Last update: 2024-10-22 15:30:36 UTC
README
Disable Media Pages is an Acorn package for WordPress that disables media attachment pages and generates unique UUID's for each media attachment's post_name
to prevent clashing.
WordPress 6.4 will bring the ability to "disable" attachment pages but attachments will still generate unnecessary slugs based on the uploaded media's filename.
Features
- Replaces media attachment
post_name
slugs with randomly generated UUID's withStr::uuid()
. - Replaces the "View" media URL with a direct link to the media.
- 404's any requests made to media attachment page slugs.
- Easily convert/revert existing media page slugs using Acorn's CLI.
Requirements
Installation
Install via Composer:
$ composer require log1x/acorn-disable-media-pages
Usage
Getting Started
This package has no configuration and will start working once installed.
Existing Media
To convert existing media, simply use the following Acorn command:
$ wp acorn media:generate-slugs
Reverting Slugs
Warning
Reverting your attachment post_name
slugs may not restore them 1:1 to what they were prior to conversion.
This command simply re-generates the slugs for each media attachment based on the existing post_title
falling back to the filename if the existing post_title
is empty.
$ wp acorn media:generate-slugs --revert
Bug Reports
If you discover a bug in Acorn Disable Media Pages, please open an issue.
Contributing
Contributing whether it be through PRs, reporting an issue, or suggesting an idea is encouraged and appreciated.
License
Acorn Disable Media Pages is provided under the MIT License.