Skip to content

Instantly share code, notes, and snippets.

@hivepress
Last active May 17, 2022 18:56
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 hivepress/416a70aced578730b0335f9abdcafdc8 to your computer and use it in GitHub Desktop.
Save hivepress/416a70aced578730b0335f9abdcafdc8 to your computer and use it in GitHub Desktop.
Add the listing submit link to the user account menu #hivepress #listings
<?php
add_filter(
'hivepress/v1/menus/user_account',
function( $menu ) {
$menu['items']['listing_submit']=[
'label' => 'custom text here',
'route' => 'listing_submit_page',
'_order' => 123,
];
return $menu;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment