Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created October 19, 2018 12:24
Show Gist options
  • Save yousufansa/acc01639ae66e74fa87c891723c568f5 to your computer and use it in GitHub Desktop.
Save yousufansa/acc01639ae66e74fa87c891723c568f5 to your computer and use it in GitHub Desktop.
Jobhunt - Post A Job url change
add_filter('jobhunt_header_post_a_job_button_url', 'jobhunt_child_header_post_a_job_button_url');
if ( !function_exists('jobhunt_child_header_post_a_job_button_url') ) {
function jobhunt_child_header_post_a_job_button_url( $page_url ) {
return 'your_url_here';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment