*
* @see header.php
*/
function shell_header() {
do_action( 'shell_header' );
}
/**
* Just after opening
*
* @see header.php
*/
function shell_header_end() {
do_action( 'shell_header_end' );
}
/**
* Just before opening
*
* @see header.php
*/
function shell_wrapper() {
do_action( 'shell_wrapper' );
}
/**
* Just after opening
*
* @see header.php
*/
function shell_in_wrapper() {
do_action( 'shell_in_wrapper' );
}
/**
* Just after closing
*
* @see header.php
*/
function shell_wrapper_end() {
do_action( 'shell_wrapper_end' );
}
/**
* Just before opening
*
* @see sidebar.php
*/
function shell_widgets() {
do_action( 'shell_widgets' );
}
/**
* Just after closing
*
* @see sidebar.php
*/
function shell_widgets_end() {
do_action( 'shell_widgets_end' );
}
?>