Skip to content

Instantly share code, notes, and snippets.

@rali14
Last active October 19, 2016 14:51
Show Gist options
  • Save rali14/6bdde3485686734ce2f57ab137a3f6b9 to your computer and use it in GitHub Desktop.
Save rali14/6bdde3485686734ce2f57ab137a3f6b9 to your computer and use it in GitHub Desktop.
Redirect automatically to link WP Job Manager
<?php
$link = 'Location: '+ esc_url( $apply->url ); ?>
<p><?php _e( 'To apply for this job please visit the following URL:', 'wp-job-manager' ); ?> <a href="<?php echo esc_url( $apply->url ); ?>" target="_blank" rel="nofollow"><?php echo esc_html( $apply->url ); ?> &rarr;</a></p>
<?php
header($link);
exit;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment