for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class Sensei_Twentyeleven
*
* Responsible for wrapping twenty eleven theme Sensei content
* with the correct markup
* @since 1.9.0
*/
Class Sensei_Twentyeleven {
* Output opening wrappers
public function wrapper_start(){
?>
<div id="primary">
<div id="content" role="main">
<?php }
* Output closing wrappers
public function wrapper_end(){ ?>
</div>
}