The tag uses one meta key from the current job listing:
The tag uses one meta key from the current job listing:
Application Meta Key: _application
Return Type: HTML anchor tag
URL Processing: Sanitized with esc_url()
Email Detection: Uses WordPress’s is_email()
function to validate email addresses
Link Processing: Different handling for emails (mailto:
prefix) and URLs (cleaned with esc_url()
)
HTML Output Examples
Basic URL Application:
<a href="https://example.com/apply">example.com/apply</a>
URL with Nofollow:
<a href="https://example.com/apply" rel="nofollow">example.com/apply</a>
URL with New Tab:
<a href="https://example.com/apply" target="_blank">example.com/apply</a>
URL with Both Options:
<a href="https://example.com/apply" rel="nofollow" target="_blank">example.com/apply</a>
Basic Email Application:
<a href="mailto:jobs@example.com">jobs@example.com</a>
Email with Nofollow:
<a href="mailto:jobs@example.com" rel="nofollow">jobs@example.com</a>
Email with New Tab:
<a href="mailto:jobs@example.com" target="_blank">jobs@example.com</a>
Email with Both Options:
<a href="mailto:jobs@example.com" rel="nofollow" target="_blank">jobs@example.com</a>