Created
December 7, 2022 15:55
-
-
Save hivepress/3fe4713d38dca85edab405aa8341e126 to your computer and use it in GitHub Desktop.
Change the Add Details page title for listings #hivepress #listings
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
<?php | |
add_filter( | |
'hivepress/v1/routes', | |
function( $routes ) { | |
$routes['listing_submit_details_page']['title'] = 'Custom title here'; | |
return $routes; | |
}, | |
1000 | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment