Altering custom Header Style by Page
-
hello,
i have use this code for change header on sitefunction my_homepage_header_style( $style ) { // Return the transparent header style if ( is_front_page() ) { $style = 'custom'; } // Return return $style; } add_filter( 'ocean_header_style', 'my_homepage_header_style' );
however, I want it to select a particular template from library that I have created.
is that possible?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Altering custom Header Style by Page’ is closed to new replies.