Created
January 12, 2021 16:23
-
-
Save yousufansa/a8d9b90147c246143bca51d2d598f6b0 to your computer and use it in GitHub Desktop.
Jobhunt - Post a Job Button Custom URL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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