Please add a filter to slugs to enable us to control it
-
Hi,
Adding filters will not change anything to the existing users nor to any users that will not add their own filter, but will help a lot to those who need it, with no cost.
Categories – instead of:
$rewrite = array( 'slug' => 'youtube-video-gallery-categories', 'with_front' => true, 'hierarchical' => true );
Do:
$rewrite = array( 'slug' => apply_filters('youtube-video-gallery-categories-slug', 'youtube-video-gallery-categories'), 'with_front' => true, 'hierarchical' => true );
Video – instead of:
$rewrite = array( 'slug' => 'youtube-video-gallery', 'with_front' => true, 'pages' => true, 'feeds' => true, );
Do:
$rewrite = array( 'slug' => apply_filters('youtube-video-gallery-slug', 'youtube-video-gallery'), 'with_front' => true, 'pages' => true, 'feeds' => true, );
- The topic ‘Please add a filter to slugs to enable us to control it’ is closed to new replies.