Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created June 12, 2015 15:40
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 mikejolley/0d0433d45dc965d23e30 to your computer and use it in GitHub Desktop.
Save mikejolley/0d0433d45dc965d23e30 to your computer and use it in GitHub Desktop.
WP Job Manager Bookmarks - Custom Login URL
/** Code goes in theme functions.php **/
add_filter( 'job_manager_bookmark_form_login_url', 'custom_job_manager_bookmark_form_login_url' );
function custom_job_manager_bookmark_form_login_url() {
return 'http://someurl.com';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment