The tag uses two meta keys and one option from WP Job Manager:
Salary Amount Meta Key: _job_salary
Currency Meta Key: _job_salary_currency
Default Currency Option: job_manager_currency
Formatting Options: Uses number_format()
with configurable separators
HTML Output Examples
Raw Amount Format:
50000
Displays exactly what was entered in the salary field, without any formatting or currency.
With Currency (Before):
$50000
Combines the currency symbol and salary amount without formatting. Currency position: before.
With Currency (After):
50000 €
Combines the currency symbol and salary amount without formatting. Currency position: after.
Fully Formatted with Currency (Before):
$50,000.00
Uses thousand separator (,) and decimal separator (.) with currency before the amount.
Fully Formatted with Currency (After):
50.000,00 €
Uses thousand separator (.) and decimal separator (,) with currency after the amount. Common in European format.
Salary Range (Raw):
50000-60000
Displays the range exactly as entered in the salary field.
Salary Range (Formatted, Before):
$50,000-$60,000
Formatted range with currency symbol before each amount.
Empty Salary Field:
Salary not specified
Shows the custom empty message (default shown here). Can be customized in the tag settings.