default header for Jobroller (1.6.3)
I'm interested in using the appthemes_header hook to replace the default header so I can add a custom one to a specific page.
The documentation mentions Classipress....Anyone have any ideas what the default header function is for jobroller? Thanks in advance!!!
I see the default is cp_header for classipress. It isn't apparent to me what this is in jobroller....Is the theme-header.php file relevent.
function unhook_appthemes_functions() {
// unload the default ClassiPress theme header
remove_action( 'appthemes_header', 'cp_header' );
}
add_action('init','unhook_appthemes_functions');
// let's add our own header instead
function my_theme_header() {
// do something here
}
add_action( 'appthemes_header', 'my_theme_header' );