Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <header>
  2. <?php
  3. $theme_header_style = theme_get_setting('header_style');//the value is 1
  4. $header_path = "header_tpl_".$theme_header_style.".php";
  5. include_once $header_path;//includes header_tpl_1.php
  6. ?>
  7. <h1><?php print $site_name; ?></h1><!--this works-->
  8. </header>
  9.  
  10. <h1>this will show up</h1>
  11. <h1><?php print $site_name; ?></h1><!--this will not work just an empty h1-->
  12. <p>this will show up on page.tpl.php as well</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement