Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrkdevelopment/89ebe0410f80ffa23f1ec8f49e79cab4 to your computer and use it in GitHub Desktop.
Save mrkdevelopment/89ebe0410f80ffa23f1ec8f49e79cab4 to your computer and use it in GitHub Desktop.
Business Directory Post Type Arg Filter
<?php
// Add this to your child theme's function.php file.
// Make sure you flush the rewrite rules.
// On wp cli you can 'wp rewrite flush'
// Or goto WordPress Admin > Settings > Permalink and save the settings which will flush the rules.
add_filter('business_directory_post_type_args', function($args){
$args['rewrite'] = [
'slug' => '/business-location',
];
return $args;
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment