Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <p><?php the_field("status"); ?> </p>
  2.  
  3. <?php
  4. //store the value in a variable first
  5. $option = get_field("status");
  6. if($option=="K dispozicii"){
  7. ?> <p style="color:green">$option</p> <?php
  8. }elseif ($option=="Obsazeno") {
  9. ?> <p style="color:red">$option</p> <?php
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement