Skip to content

Instantly share code, notes, and snippets.

@imfaisalkh
Last active August 31, 2019 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imfaisalkh/91479afb94243cc5a9531e3db10af2f0 to your computer and use it in GitHub Desktop.
Save imfaisalkh/91479afb94243cc5a9531e3db10af2f0 to your computer and use it in GitHub Desktop.
Job Description Field Template
<?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