Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created January 12, 2021 16:23
Show Gist options
  • Save yousufansa/a8d9b90147c246143bca51d2d598f6b0 to your computer and use it in GitHub Desktop.
Save yousufansa/a8d9b90147c246143bca51d2d598f6b0 to your computer and use it in GitHub Desktop.
Jobhunt - Post a Job Button Custom URL
if ( ! function_exists ( 'jh_child_custom_header_post_a_job_button_url' ) ) {
function jh_child_custom_header_post_a_job_button_url( $url ) {
return "#"; //replace # with your url
}
}
add_filter( 'jobhunt_header_post_a_job_button_url', 'jh_child_custom_header_post_a_job_button_url' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment