File Editor
Directories:
.. (Back)
calypsoify
carousel
comment-likes
comments
contact-form
custom-css
custom-post-types
geo-location
google-analytics
infinite-scroll
lazy-images
likes
markdown
masterbar
memberships
photon
photon-cdn
plugin-search
post-by-email
protect
publicize
pwa
related-posts
scan
search
seo-tools
sharedaddy
shortcodes
simple-payments
site-icon
sitemaps
sso
subscriptions
theme-tools
tiled-gallery
verification-tools
videopress
widget-visibility
widgets
woocommerce-analytics
wordads
wpcom-block-editor
wpcom-tos
Files:
.eslintrc.js
after-the-deadline.php
carousel.php
comment-likes.php
comments.php
contact-form.php
copy-post.php
custom-content-types.php
custom-css.php
enhanced-distribution.php
geo-location.php
google-analytics.php
gravatar-hovercards.php
infinite-scroll.php
json-api.php
latex.php
lazy-images.php
likes.php
markdown.php
masterbar.php
minileven.php
mobile-push.php
module-extras.php
module-headings.php
module-info.php
monitor.php
notes.php
photon-cdn.php
photon.php
plugin-search.php
post-by-email.php
protect.php
publicize.php
pwa.php
related-posts.php
search.php
seo-tools.php
sharedaddy.php
shortcodes.php
shortlinks.php
sitemaps.php
sso.php
stats.php
subscriptions.php
theme-tools.php
tiled-gallery.php
vaultpress.php
verification-tools.php
videopress.php
widget-visibility.php
widgets.php
woocommerce-analytics.php
wordads.php
wpgroho.js
Create New File
Create
Edit File: geo-location.php
<?php require_once dirname( __FILE__ ) . '/geo-location/class.jetpack-geo-location.php'; /** * Geo-location shortcode for display of location data associated with a post. * * Usage with current global $post: * [geo-location] * * Usage with specific post ID: * [geo-location post=5] */ add_shortcode( 'geo-location', 'jetpack_geo_shortcode' ); function jetpack_geo_shortcode( $attributes ) { $attributes = shortcode_atts( array( 'post' => null, 'id' => null ), $attributes ); return jetpack_geo_get_location( $attributes['post'] ? $attributes['post'] : $attributes['id'] ); } /** * Get the geo-location data associated with the supplied post ID, if it's available * and marked as being available for public display. The returned array will contain * "latitude", "longitude" and "label" keys. * * If you do not supply a value for $post_id, the global $post will be used, if * available. * * @param integer|null $post_id * * @return array|null */ function jetpack_geo_get_data( $post_id = null) { $geo = Jetpack_Geo_Location::init(); if ( ! $post_id ) { $post_id = $geo->get_post_id(); } $meta_values = $geo->get_meta_values( $post_id ); if ( ! $meta_values['is_public'] || ! $meta_values['is_populated'] ) { return null; } return array( 'latitude' => $meta_values['latitude'], 'longitude' => $meta_values['longitude'], 'label' => $meta_values['label'] ); } /** * Display the label HTML for the geo-location information associated with the supplied * post ID. * * If you do not supply a value for $post_id, the global $post will be used, if * available. * * @param integer|null $post_id * * @return void */ function jetpack_geo_display_location( $post_id = null ) { echo jetpack_geo_get_location( $post_id ); } /** * Return the label HTML for the geo-location information associated with the supplied * post ID. * * If you do not supply a value for $post_id, the global $post will be used, if * available. * * @param integer|null $post_id * * @return string */ function jetpack_geo_get_location( $post_id = null ) { return Jetpack_Geo_Location::init()->get_location_label( $post_id ); }
Save Changes
Rename File
Rename