Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Created April 15, 2014 22:17
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/10782775 to your computer and use it in GitHub Desktop.
Save mikejolley/10782775 to your computer and use it in GitHub Desktop.
WP Job Manager - Custom login url for submit form
/** Code goes in theme functions.php **/
add_filter( 'submit_job_form_login_url', 'custom_submit_job_form_login_url' );
function custom_submit_job_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