Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. -- archive-event.php
  2.  
  3. get_header();
  4. custom_header_styles('...', '...', '...');
  5.  
  6.  
  7. -- functions.php
  8. function header_styles($title='', $subtitle ='', $background){
  9. $format = '...';
  10. return sprintf($format, $title, $subtitle, $background);
  11. }
  12.  
  13. add_action('konte_after_header', 'custom_header_styles');
  14. function custom_header_styles($title='',$subtitle='',$background=''){
  15. echo header_styles($title, $subtitle, $background);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement