Advertisement
Guest User

Untitled

a guest
Oct 9th, 2014
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1.             <div class="entry-game">
  2.                 <?php
  3.                     $swf_gameurl = get_post_meta( $post->ID, 'swf_value_key', true );
  4.                     $embed_code = get_post_meta( $post->ID, 'embed_value_key', true );
  5.  
  6.                     $print_game = $swf_gameurl === '' ? $embed_code : $swf_gameurl;
  7.                    
  8.                 if ( $print_game === $swf_gameurl ) { ?>
  9.                     <object type="application/x-shockwave-flash" width="900" height="520" data="<?php echo $swf_gameurl; ?>"><param name="movie" value="<?php echo $print_game; ?>" /></object>    
  10.                  <?php } else { echo $print_game; } ?>
  11.             </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement