Created
August 31, 2019 01:59
-
-
Save imfaisalkh/f7973f1f1c14426a78733a80ab0fc475 to your computer and use it in GitHub Desktop.
Resume 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 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