Random Post Name
Auto-generate a unique random string and set it to post_name. Customization with hooks Use of filter hooks is at your own risk.
Maintenance 20/1002029d since update
Active installs
10
Downloads
855
Reviews
0
Age
5.6y
Tagspostslugpressmanpost_nameramdom
Plugin info
Total downloads: 855
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 5
Last updated: 6/12/2020 (2029 days ago)
Added to WordPress: 6/12/2020 (5 years old)
Minimum WordPress version: 5.4
Tested up to WordPress version: 5.4.18
Minimum PHP version: 7.1.24
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 2029 days ago
20/100
Is Random Post Name abandoned?
Possibly abandoned (last update 2029 days ago).
Compatibility
Requires WordPress: 5.4
Tested up to: 5.4.18
Requires PHP: 7.1.24
Languages
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
No similar plugins found yet.
Description
Auto-generate a unique random string and set it to post_name.
Customization with hooks
Use of filter hooks is at your own risk.
- You can change post_type to be applied by an array. Deafult is ‘post’ only.
add_filter( 'random_post_name_post_types', 'hoge' );
function hoge(){
return ['post', 'page'];
}
- You can change the number of characters in the post_name. Deafult is 10.
add_filter( 'random_post_name_digits', 'hoge' );
function hoge(){
return 20;
}
- You can change the variation of characters. Deafult is ‘0123456789abcdefghijklmnopqrstuvwxyz’. Do not include multibyte chars.
add_filter( 'random_post_name_choices', 'hoge' );
function hoge(){
return '0123456789abcdefghijkmnpqrstuvwxyz_-';
}
Precautions
Too few characters and too few character variations can cause unexpected problems.
Installation
- Upload the plugin package to the plugins directory.
- Activate the plugin through the \’Plugins\’ menu in WordPress.
Frequently Asked Questions
No FAQ available
Review feed
No reviews available
Screenshots
No screenshots available
Changelog
1.0
- first version.