/** * Display content column and the loop. */ function thesis_content_column() { echo "\t\t<div id=\"content\"" . thesis_content_classes() . ">\n\n"; thesis_hook_before_content(); #hook thesis_loop_posts(); thesis_hook_after_content(); #hook echo "\t\t</div>\n\n"; }
/** * Display content column and the loop. */ function thesis_content_column() { ?> <div id="content"<?php thesis_content_classes(); ?> > <?php thesis_hook_before_content(); thesis_loop_posts(); thesis_hook_after_content(); ?> </div> <?php }