This plugin hasn’t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

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.

  • 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.

ਸਥਾਪਤੀਕਰਨ

  1. Upload the plugin package to the plugins directory.
  2. Activate the plugin through the \’Plugins\’ menu in WordPress.

ਸਮੀਖਿਆਵਾਂ

There are no reviews for this plugin.

ਯੋਗਦਾਨੀ ਤੇ ਵਿਕਾਸਕਾਰ

“Random Post Name” is open source software. The following people have contributed to this plugin.

ਯੋਗਦਾਨੀ

“Random Post Name” ਦਾ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਕਰੋ।

ਵਿਕਾਸ ਕਾਰਜ ਵਿੱਚ ਰੁਚੀ ਰੱਖਦੇ ਹੋ?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

ਤਬਦੀਲੀ-ਚਿੱਠਾ

1.0

  • first version.