This file contains 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
# Introduction | |
I can’t tell you how to introduce yourself, I can only tell you it should be the first step. | |
# Technical Background | |
1. Can you describe a project where you were deeply involved in the architecture or requirements gathering? What role did you play, and how did you ensure the technical team's needs were met without constant involvement in meetings? | |
2. How do you stay technically sharp given your managerial responsibilities? Could you give an example of how you've recently contributed to solving a technical challenge? | |
## Answers |
This file contains 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
$varparse = get_field('WHATEVER_FIELD_NAME'); | |
$var = apply_filters('the_content', $varparse); | |
echo $var; | |
//Normally done with a WYSISYG field |
This file contains 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
//Your html code snippet | |
<?php echo(encode_email(get_field('variable-you-choose')));?> | |
//Your Functions file add on | |
function encode_email($e) { | |
$output = ""; | |
for ($i = 0; $i < strlen($e); $i++) { $output .= '&#'.ord($e[$i]).';'; } | |
return $output; | |
} |