Swift reply on technical adjustment
-
I wanted some taxonomy changes for appthisway and these guys replied instantly. With the appropriate PHP adjustments.
Should anybody need to change their URL slug within the plugin categories section, simply add this to your wp theme function file:
add_filter(‘register_taxonomy_args’, function ($args, $name) {
if ($name === ‘wprss_category’) {
$args[‘rewrite’][‘slug’] = ‘latest’;
}
return $args;
}, 10, 2);10/10 support.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Swift reply on technical adjustment’ is closed to new replies.