Advertisement
chrisp119

WP Wunderground Plugin Theme Implementation

Jun 13th, 2011
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2.     $country = get_post_meta($post->ID, "country", true);
  3.     $city = get_post_meta($post->ID, "city", true);
  4.  
  5.     echo '<div>';  
  6.     do_shortcode('[forecast location="$city, $country" caption=""  measurement='C' todaylabel="Today" datelabel="date('d/m/Y')" highlow='%%high%%°/%%low%%°' numdays="5" iconset="Incredible" cache="true" width="100%"]');  
  7.     echo '</div>';
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement