You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
2.6 KiB
130 lines
2.6 KiB
<?php
|
|
/**
|
|
* Theme hooks
|
|
*
|
|
* @package Cordero
|
|
*/
|
|
|
|
/**
|
|
* Main page wrapper
|
|
*/
|
|
function cordero_before_page() {
|
|
do_action( 'cordero_before_page' );
|
|
}
|
|
|
|
function cordero_after_page() {
|
|
do_action( 'cordero_after_page' );
|
|
}
|
|
|
|
/**
|
|
* Header
|
|
*/
|
|
function cordero_before_header() {
|
|
do_action( 'cordero_before_header' );
|
|
}
|
|
|
|
function cordero_after_header() {
|
|
do_action( 'cordero_after_header' );
|
|
}
|
|
|
|
function cordero_before_transparent_header() {
|
|
do_action( 'cordero_before_transparent_header' );
|
|
}
|
|
|
|
function cordero_after_transparent_header() {
|
|
do_action( 'cordero_after_transparent_header' );
|
|
}
|
|
|
|
function cordero_before_top_bar() {
|
|
do_action( 'cordero_before_top_bar' );
|
|
}
|
|
|
|
function cordero_after_top_bar() {
|
|
do_action( 'cordero_after_top_bar' );
|
|
}
|
|
|
|
function cordero_before_masthead_inner() {
|
|
do_action( 'cordero_before_masthead_inner' );
|
|
}
|
|
|
|
function cordero_after_masthead_inner() {
|
|
do_action( 'cordero_after_masthead_inner' );
|
|
}
|
|
|
|
function cordero_before_site_branding() {
|
|
do_action( 'cordero_before_site_branding' );
|
|
}
|
|
|
|
function cordero_after_site_branding() {
|
|
do_action( 'cordero_after_site_branding' );
|
|
}
|
|
|
|
function cordero_before_site_nav() {
|
|
do_action( 'cordero_before_site_nav' );
|
|
}
|
|
|
|
function cordero_after_site_nav() {
|
|
do_action( 'cordero_after_site_nav' );
|
|
}
|
|
|
|
function cordero_before_main_menu() {
|
|
do_action( 'cordero_before_main_menu' );
|
|
}
|
|
|
|
function cordero_after_main_menu() {
|
|
do_action( 'cordero_after_main_menu' );
|
|
}
|
|
|
|
function cordero_before_header_search() {
|
|
do_action( 'cordero_before_header_search' );
|
|
}
|
|
|
|
function cordero_after_header_cart() {
|
|
do_action( 'cordero_after_header_cart' );
|
|
}
|
|
|
|
/**
|
|
* Primary content
|
|
*/
|
|
function cordero_before_primary_content() {
|
|
do_action( 'cordero_before_primary_content' );
|
|
}
|
|
|
|
function cordero_after_primary_content() {
|
|
do_action( 'cordero_after_primary_content' );
|
|
}
|
|
|
|
/**
|
|
* Footer
|
|
*/
|
|
function cordero_before_footer() {
|
|
do_action( 'cordero_before_footer' );
|
|
}
|
|
|
|
function cordero_before_top_footer() {
|
|
do_action( 'cordero_before_top_footer' );
|
|
}
|
|
|
|
function cordero_after_top_footer() {
|
|
do_action( 'cordero_after_top_footer' );
|
|
}
|
|
|
|
function cordero_before_middle_footer() {
|
|
do_action( 'cordero_before_middle_footer' );
|
|
}
|
|
|
|
function cordero_after_middle_footer() {
|
|
do_action( 'cordero_after_middle_footer' );
|
|
}
|
|
|
|
function cordero_before_bottom_footer() {
|
|
do_action( 'cordero_before_bottom_footer' );
|
|
}
|
|
|
|
function cordero_after_bottom_footer() {
|
|
do_action( 'cordero_after_bottom_footer' );
|
|
}
|
|
|
|
function cordero_after_footer() {
|
|
do_action( 'cordero_after_footer' );
|
|
}
|
|
|