We'll create fresh WordPress site with WP Quadratum installed. You have 20 minutes to test the plugin after that site we'll be deleted.
This plugin allows you to display your last Swarm checkin as a map widget on the sidebar or embedded via a shortcode in a post or page of your WordPress powered site.
Setting and options include:
px
) or as a percentage.The strapline text containing the venue name, venue URL and timestamp of your last Swarm checkin can be customised via the plugin’s filters. See the Filter Support And Usage section for more information.
The current version of this plugin allows you to associate a single Foursquare account with your WordPress site; associating multiple Foursquare accounts, one per user account is not currently supported.
WP Quadratum supports two shortcodes and three shortcode aliases; [wp_quadratum_map]
to expand the shortcode in a post or page and replace it with the checkin map and [wp_quadratum_locality]
to allow you to embed aspects of your last checkin in a post or page.
Adding this shortcode to the content of a post or page as content, expands the shortcode and replaces it with a checkin map.
The shortcode also supports multiple attributes which allow you to customise the way in which the shortcode is expanded into the checkin map:
width
attributewidth_units
attributeheight
attributeheight_units
attributezoom
attribute** The “width” Attribute **
The width
attribute, in conjunction with the height
attribute specifies the width of the map to be inserted into a post or page. If omitted, the map width defaults to a value of 300
.
** The “width_units” Attribute **
The width_units
attribute, specifies how the value specified in the width
attribute should be interpreted. Valid values for this attribute as px
and %
, denoting that the width
attribute should be interpreted in pixels or as a percentage respectively. If omitted, this attribute defaults to a value of px
.
** The “height” Attribute **
The height
attribute, in conjunction with the width
attribute specifies the height of the map to be inserted into a post or page. If omitted, the map height defaults to a value of 300
.
** The “height_units” Attribute **
The height_units
attribute, specifies how the value specified in the height
attribute should be interpreted. Valid values for this attribute as px
and %
, denoting that the height
attribute should be interpreted in pixels or as a percentage respectively. If omitted, this attribute defaults to a value of px
.
** The “zoom” Attribute **
The zoom
attribute specifies the zoom level to be used when displaying the checkin map. If omitted, the zoom level defaults to a value of 16
which is roughly analogous to a neighbourhood zoom.
The [wp_quadratum]
shortcode is an alias for the [wp_quadratum_map]
shortcode and has the same functionality.
The [wpq_map]
shortcode is an alias for the [wp_quadratum_map]
shortcode and has the same functionality.
Adding this shortcode to the content of a post or page, expands the shortcode and replaces it with information about your last Foursquare checkin. The information to be displayed is selected by the shortcode’s type
attribute, which allows you to select the venue name, address, region, postal code, coordinates, timezone or timezone offset.
By default, the [wp_quadratum_locality]
shortcode and the [wpq_locality]
alias are disabled. This is because not all Foursquare venues contain the full scope of locality elements that the shortcode supports (the minimum requirements for a Foursquare venue are name, category and coordinates). To backfill any missing venue elements, WP Quadratum uses a reverse geocoding service from Factual to supply the missing information.
To enable the [wp_quadratum_locality]
shortcode, from the Dashboard navigate to Settings / WP Quadratum and click on the Shortcodes tab. Select the Enable Locality Shortcode Usage checkbox and the Factual OAuth Settings meta-box will appear. You’ll then need to sign up for a Factual API key after which you’ll be given an OAuth Key and OAuth Secret. Copy and paste these into the Factual OAuth text fields and click on Save Shortcode Settings. You’ll now be able to use the [wp_quadratum_locality]
shortcode or its alias.
The “type” Attribute
The type
attribute specifies the element of your last Foursquare checkin that is to be displayed in a post or page and can take one of the following values:
venue
– the name of the last Foursquare venue you checked into.address
– the street address of the venue; not including the region, locality or postal code.region
– the region of the venue; the geographic context of the region will vary from country to country but is roughly analogous to the venue’s city.postcode
– the postal code of the venue, if the country or region supports postal codes.coordinates
– the geographic coordinates of the venue, in the form latitude,longitude.timezone
– the timezone name of the time of the checkin, such as Europe/London
.tzoffset
– the offset from GMT of the time of the checkin, in the form GMT[-+]hours, such as GMT-1 or GMT+2.locality
– the locality of the venue; the geographic context of the locality will vary according to country, but is roughly analogous to the town or neighbourhood.If the type
attribute is not supplied, or if the value of this attribute is not one of the above values, type="locality"
will be assumed. The shortcode’s replacement value can be modified via the plugin’s wp_quadratum_locality
filter; see the Filter Support and Usage section for more information.
The [wpq_locality]
shortcode is an alias for the [wp_quadratum_locality]
shortcode and has the same functionality.
WP Quadratum supports three filters, which are described in more detail below. The plugin’s filters allow you to:
Allow a filter hook function to gain access to the checkin metadata that is returned from the Foursquare API and which is used to build the checkin map and strapline. It’s important to note that the implementation of this filter isn’t strictly a WordPress filter per se. The user defined hook function is passed only the checkin metadata. Any changes made to the metadata will not be reflected in the output of the plugin’s or shortcode’s map, nor will any return value from the hook function be honoured by the plugin. The filter will be called before the wp_quadratum_strapline
filter, if used, allowing you to store the checkin contents and use them within the wp_quadratum_strapline
filter hook.
The contents of the checkin data this filter can access are a Checkin Response
object, which is documented on the Foursquare Developer Site.
Example: Store the contents of the Foursquare checkin that the plugin will be to display the checkin map.
$last_checkin = null;
add_filter('wp_quadratum_checkin', store_last_checkin, 10, 1);
function store_last_checkin($checkin) {
$last_checkin = $checkin;
}
Applied to the strapline that is displayed via the plugin’s widget or shortcode. The strapline is the text that appears immediately below the checkin map.
Example: Change the date and time formatting in the strapline
add_filter('wp_quadratum_strapline', 'format_strapline', 10, 2);
function format_strapline($content, $params) {
// $params = array (
// 'venue-url' => '4Sq venue url for checkin',
// 'venue-name' => 'checkin venue name',
// 'checked-in-at' => 'timestamp of checkin'
// );
$strapline = '<h5>Last seen at <a href="' . $params['venue-url'] . '" target="_blank">' . $params['venue-name'] . '</a> on ' . date('l jS \of F Y h:i:s A', $params['checked-in-at']) . '</h5>';
return $strapline;
}
Applied to the replacement content of the [wp_quadratum_locality]
shortcode immediately before the shortcode is replaced. The filter’s hook function is passed two arguments; the shortcode’s value and corresponding type
attribute.
Example: Wrap each invocation of the [wp_quadratum_locality]
shortcode in a div
whose class includes the attribute type.
add_filter('wp_quadratum_locality', 'format_locality', 10, 2);
function format_locality($value, $type) {
$class = 'wp-quadratum-locality-' . $type;
return '<div class="' . $class . '">' . $value . '</div>';
}