Skip to content

Instantly share code, notes, and snippets.

@hivepress
Last active May 9, 2022 07:01
Show Gist options
  • Save hivepress/d9f3199761c11f9d83e0a84b9ddb2a87 to your computer and use it in GitHub Desktop.
Save hivepress/d9f3199761c11f9d83e0a84b9ddb2a87 to your computer and use it in GitHub Desktop.
Change the listing URL slug (requires refreshing permalinks) #hivepress #listings
<?php
add_filter(
'hivepress/v1/post_types',
function( $args ) {
$args['listing']['rewrite']['slug'] = 'custom-slug-here';
return $args;
},
100
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment