Skip to content

Instantly share code, notes, and snippets.

@purethemes
Created October 28, 2016 22:31
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 purethemes/65601f8614a2622465b5a905f0378212 to your computer and use it in GitHub Desktop.
Save purethemes/65601f8614a2622465b5a905f0378212 to your computer and use it in GitHub Desktop.
<?php if ( candidates_can_apply() ) : ?>
<?php
$external_apply = get_post_meta( $post->ID, '_apply_link', true );
if(!empty($external_apply)) {
echo '<a class="button" target="_blank" href="'.esc_url($external_apply).'">'.esc_html__( 'Apply for job', 'workscout' ).'</a>';
} else {
get_job_manager_template( 'job-application.php' );
}
?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment