Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created February 7, 2015 08:40
Show Gist options
  • Save mikejolley/30180e3f090f7d29f9ed to your computer and use it in GitHub Desktop.
Save mikejolley/30180e3f090f7d29f9ed to your computer and use it in GitHub Desktop.
Change bookmarks login link
/** 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