Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created July 25, 2016 20:00
Show Gist options
  • Save kraftbj/320b29ebcf10027108d6a347b384ff6e to your computer and use it in GitHub Desktop.
Save kraftbj/320b29ebcf10027108d6a347b384ff6e to your computer and use it in GitHub Desktop.
Change bookmark URL
<?php //remove in an existing file
add_filter( 'job_manager_bookmark_form_login_url', 'set_custom_login_for_bookmarks_only');
function set_custom_login_for_bookmarks_only( $url ){
return 'http://your-custom-link-goes-here.com';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment