Advertisement
Guest User

Untitled

a guest
Aug 27th, 2011
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_shortcode( 'googlemaps', 'flh_wpcomgms_shortcode_handler' );
  2.  
  3. function flh_wpcomgms_shortcode_handler( $attr ) {
  4. $output = '<iframe width="425" height="350" frameborder="0" scrolling="no" ';
  5. $output .= 'marginheight="0" marginwidth="0" src="';
  6. $output .= esc_url( $attr[0] );
  7. $output .= '"></iframe>';
  8.  
  9. return $output;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement