Title: Displaying with Shortcode, no iframe
Last modified: August 31, 2016

---

# Displaying with Shortcode, no iframe

 *  Resolved [t.rex888](https://wordpress.org/support/users/trex888/)
 * (@trex888)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/displaying-with-shortcode-no-iframe/)
 * Hi there,
 * I’m trying to use the plugin to display just 3 things: Temperature, Wind Direction
   and Wind Speed. I need it displayed with wind direction and wind speed directly
   below the temperature, like this:
 * 3°C
    NW 10kts
 * I believe the best way to do this is to use two forecasts, A and B with A set
   to only display Temperature and B set to display wind direction and speed. The
   problem is, when using shortcode an iframe gets put around each, causing the 
   spacing of the 2 to be way out of whack. How can I display these 2 forecasts 
   with no iframe so that I can get them to display the way I have it in the example
   above?
 * Thanks for any help with this,
 * T
 * [https://wordpress.org/plugins/wp-forecast/](https://wordpress.org/plugins/wp-forecast/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [tuxlog](https://wordpress.org/support/users/tuxlog/)
 * (@tuxlog)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/displaying-with-shortcode-no-iframe/#post-7179662)
 * Mhm, I would recommend to do a little bit of PHP for this.
 *     ```
       $res=wp_forecast_data("A"); // gets all the data for location A
       print_r($erg); // output all data
       ```
   
 * so for you it would be something like (not tested)
 *     ```
       $res=wp_forecast_data("A");
       echo "<p>".$res['temperature'].'<br/>'.$res['winddir']." ".$res['windspeed']."</p>";
       ```
   
 * There are several plugins to allow php within widget, posts, pages.

Viewing 1 replies (of 1 total)

The topic ‘Displaying with Shortcode, no iframe’ is closed to new replies.

 * ![](https://ps.w.org/wp-forecast/assets/icon-128x128.png?rev=1515240)
 * [wp-forecast](https://wordpress.org/plugins/wp-forecast/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-forecast/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-forecast/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-forecast/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-forecast/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-forecast/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [tuxlog](https://wordpress.org/support/users/tuxlog/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/displaying-with-shortcode-no-iframe/#post-7179662)
 * Status: resolved