Revisions
- April 28, 2013 @ 13:44:12 [Current Revision] by PeterLugg
- July 8, 2013 @ 14:18:27 [Autosave] by PeterLugg
- April 28, 2013 @ 13:41:52 by PeterLugg
- April 28, 2013 @ 13:39:43 by PeterLugg
Revision Differences
April 28, 2013 @ 13:41:52 | Current Revision | ||
---|---|---|---|
Content | |||
Unchanged: This is a solution I have researched and created based on a few pre-existing components. | Unchanged: This is a solution I have researched and created based on a few pre-existing components. | ||
Unchanged: Firstly, use this to add Google Maps oEmbeds to WordPress: <a href="https:/ /github.com/wpsmith/ google-oembed" target="_blank" >https://github.com/wpsmith/ google-oembed</a> | Unchanged: Firstly, use this to add Google Maps oEmbeds to WordPress: <a href="https:/ /github.com/wpsmith/ google-oembed" target="_blank" >https://github.com/wpsmith/ google-oembed</a> | ||
Unchanged: I made one change to the code, I changed the following line by added a class to the Google Maps iframe, you will see why later. | Unchanged: I made one change to the code, I changed the following line by added a class to the Google Maps iframe, you will see why later. | ||
Unchanged: Change this line: | Unchanged: Change this line: | ||
Unchanged: [php]return apply_filters( 'embed_googlemaps', "<iframe width='{$width}' height='{$height}' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='{$url}& output=embed'> </iframe>" );[/php] | Unchanged: [php]return apply_filters( 'embed_googlemaps', "<iframe width='{$width}' height='{$height}' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='{$url}& output=embed'> </iframe>" );[/php] | ||
Deleted: | |||
Unchanged: ...to this ... | Unchanged: ...to this ... | ||
Unchanged: [php]return apply_filters( 'embed_googlemaps', "<iframe class='google_ maps_oembed' width='{$width}' height='{$height}' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='{$url}& output=embed'> </iframe>" );[/php] | Unchanged: [php]return apply_filters( 'embed_googlemaps', "<iframe class='google_ maps_oembed' width='{$width}' height='{$height}' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='{$url}& output=embed'> </iframe>" );[/php] | ||
Deleted: | |||
Unchanged: Secondly, this css will make Google Maps iFrames responsive: <a href="http:// themeloom.com/ 2013/02/tips- embed-google- maps-and-calendars- in-a-responsive- wordpress-theme/" target="_blank" >http://themeloom.com/2013/ 02/tips-embed- google-maps- and-calendars- in-a-responsive- wordpress-theme/</a> | Unchanged: Secondly, this css will make Google Maps iFrames responsive: <a href="http:// themeloom.com/ 2013/02/tips- embed-google- maps-and-calendars- in-a-responsive- wordpress-theme/" target="_blank" >http://themeloom.com/2013/ 02/tips-embed- google-maps- and-calendars- in-a-responsive- wordpress-theme/</a> | ||
Unchanged: The third part of the equation is adding a div tag and class around the Google Maps iframe which allows the css to work it's magic. | Unchanged: The third part of the equation is adding a div tag and class around the Google Maps iframe which allows the css to work it's magic. | ||
Unchanged: I used the following jQuery to wrap a div and class around any Google Maps iframe with the class we added earlier to the plugin code: | Unchanged: I used the following jQuery to wrap a div and class around any Google Maps iframe with the class we added earlier to the plugin code: | ||
Unchanged: [js]$('iframe.google_ maps_oembed') .wrapAll('< div></div>');[/js] | Unchanged: [js]$('iframe.google_ maps_oembed') .wrapAll('< div></div>');[/js] | ||
Added: Lastly, I have used the following php to embed a Google map (set via custom meta field with a Google Maps URL input), simply get the Google Maps url set as a variable and then echo the following: | |||
Added: [php]echo apply_filters( 'the_content', $string_containing_url);[/php] |
Note: Spaces may be added to comparison text to allow better line wrapping.
No comments yet.