Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. add_filter( 'techmarket_header_version', 'tm_child_custom_header', 20 );
  2.  
  3. function tm_child_custom_header( $header_style ) {
  4.  
  5. if ( is_product() ) { // Give the conditional tag here
  6. $header_style = 'v10'; // Give the header version here
  7. }
  8.  
  9. return $header_style;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement