Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. </head>
  2.     <?php
  3.       global $post;
  4.  
  5.       $post_meta = get_post_meta( $post->ID);
  6.       $bodyClass = $post_meta['id_strony_pomocne_przy_stylowaniu'];
  7.      
  8.       if( $bodyClass ){
  9.  
  10.         echo "<body class='".$bodyClass[0].>"';
  11.  
  12.     }else {
  13.  
  14.        echo "<body class='".$bodyClass[0].>"';
  15.  
  16.     }
  17.  
  18.     ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement