Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created January 4, 2021 14:01
Show Gist options
  • Save yousufansa/172f8a693f546a32bf07d1b332b4e7f2 to your computer and use it in GitHub Desktop.
Save yousufansa/172f8a693f546a32bf07d1b332b4e7f2 to your computer and use it in GitHub Desktop.
Jobhunt - Display Custom Content on Job Archive Page
if ( ! function_exists( 'jh_child_job_archive_custom_content' ) ) {
function jh_child_job_archive_custom_content() {
$static_content_id = '1354'; // Replace 1354 with your static block id
$static_content = get_post( $static_content_id );
echo do_shortcode( $static_content->post_content );
}
}
add_action( 'jobhunt_after_job_listing_loop', 'jh_child_job_archive_custom_content', 20 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment