I have a very basic question.
In the functions.php file of a theme, what happens to the text that is outside a function and outside the <?php ?> tags? Can I place notes before and after the functions without commenting it and without affecting the system? Or should I at least enclose the out-of-php text in html comments?
For example:
comment/note/reference text
<?php
function my_function() {
code;
return results;
}
?>
more comment/note/reference text
<?php
function my_function_2() {
code;
return results;
}
?>
more comment/note/reference text
cheers,
Gregory