New Plugin

Dynamic WP Job Manager
Tags for Elementor

Enhance your Elementor pages with dynamic WP Job Manager tags. This plugin enables seamless integration and stylish display of job tags directly in your Elementor layout. Perfect for job portals and career websites.

WPJM job application dynamic tag – meta key and email detection

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>