Advertisement
bphelp

Using Different Style Sheets Based On If Logged In

Mar 27th, 2013
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. function bphelp_use_different_stylesheets() {
  3. if ( is_user_logged_in() ) {
  4. ?>
  5. <link rel=&quot;stylesheet&quot; href=&quot;"/home.css
  6. type="text/css" media="screen" />
  7. else{
  8. <link rel=&quot;stylesheet&quot; href=&quot;"
  9. type="text/css" media="screen" />
  10. }
  11. <?php
  12. }
  13. }
  14. add_action ('bp_head', 'bphelp_use_different_stylesheets');
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement