Created
July 16, 2025 10:13
-
-
Save propertyhive/150504f9b89d4f0314504df4fd686817 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter( 'propertyhive_register_post_type_property', 'change_property_slug' ); | |
| function change_property_slug( $args ) | |
| { | |
| $args['rewrite'] = array( 'slug' => 'your-property-archive', 'with_front' => false ); | |
| return $args; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment