Last active
August 31, 2019 01:59
-
-
Save imfaisalkh/91479afb94243cc5a9531e3db10af2f0 to your computer and use it in GitHub Desktop.
Job Description Field Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
#-------------------------------------------------------------------------------# | |
# WP Job Manager - Description Field Template | |
#-------------------------------------------------------------------------------# | |
add_filter( 'capstone_job_desc_template', 'capstone_job_desc_field_template' ); | |
function capstone_job_desc_field_template() { | |
$output = '<h3>Description</h3>'; | |
$output .= '<p>What is the job about? Enter overall description of your job.</p>'; | |
$output .= '<h3>Benefits</h3>'; | |
$output .= '<ul>'; | |
$output .= '<li>What candidate can get from the position?</li>'; | |
$output .= '<li>What candidate can get from the position?</li>'; | |
$output .= '<li>What candidate can get from the position?</li>'; | |
$output .= '</ul>'; | |
$output .= '<h3>Required Skills</h3>'; | |
$output .= '<ul>'; | |
$output .= '<li>Required skills for the vacancy?</li>'; | |
$output .= '<li>Required skills for the vacancy?</li>'; | |
$output .= '<li>Required skills for the vacancy?</li>'; | |
$output .= '</ul>'; | |
return $output; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment