Skip to content

Instantly share code, notes, and snippets.

@imfaisalkh
Created 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/f7973f1f1c14426a78733a80ab0fc475 to your computer and use it in GitHub Desktop.
Save imfaisalkh/f7973f1f1c14426a78733a80ab0fc475 to your computer and use it in GitHub Desktop.
Resume Description Field Template
<?php
#-------------------------------------------------------------------------------#
# WP Resume Manager - Description Field Template
#-------------------------------------------------------------------------------#
add_filter( 'capstone_resume_desc_template', 'capstone_resume_desc_field_template' );
function capstone_resume_desc_field_template() {
$output = '<p>Introduce yourself. What are your goals, what are your objectives?</p>';
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment