You can edit XHTML parts shown below.
{$variable}
" are the parts which the result of PHP will be desplayed in.They are all in /include/user_include
.
"menu_bottom.inc.txt-sample" => "Botton of the menu"
These are all in "/include/user_include/_default_backup/
".
fnc_*.inc.php
Other XHTML parts are functionalized and organized in fnc_*.inc.php
, so please refer to it when you need to.
Here's a coding style example:
echo <<<EOD <tag>XHTML contents{$PHP_VAR}</tag> <tag>XHTML contents{$PHP_VAR}</tag> <tag>XHTML contents{$PHP_VAR}</tag> EOD;
Here document ID is "EOD" (to make finding XHTML tags easier), and most of the PHP variables used in functions are in curly blacket.
Don't forget to backup before you cosutomize.
This is P_BLOG's base XHTML structure.
See Also : P_BLOG XHTML Structure & Classes