PATH:
home
/
letacommog
/
entrepro
/
wp-content
/
plugins
/
geo-my-wp
/
plugins
/
posts-locator
/
includes
<?php // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Generate the post location form. * * @param array $atts [description] * @return [type] [description] */ function gmw_post_location_form_shortcode( $atts = array() ) { if ( empty( $atts ) ) { $atts = array(); } ob_start(); gmw_post_location_form( $atts ); $content = ob_get_clean(); return $content; } add_shortcode( 'gmw_post_location_form', 'gmw_post_location_form_shortcode' ); /** * Output the location address fields of a post. * * @see gmw_get_post_address() for the list of attributes ( includes/gmw-posts-locator-functions.php ). */ add_shortcode( 'gmw_post_address', 'gmw_get_post_address' ); /** * Output post location fields or location meta fields. * * @see gmw_get_post_location_fields() for the list of attributes ( includes/gmw-posts-locator-functions.php ). */ add_shortcode( 'gmw_post_location_fields', 'gmw_get_post_location_fields' );
[+]
..
[-] class-gmw-single-post-location.php
[edit]
[-] gmw-posts-locator-search-form-template-functions.php
[edit]
[-] class-gmw-posts-locator-form.php
[edit]
[-] gmw-posts-locator-shortcodes.php
[edit]
[-] class-gmw-post-location-form.php
[edit]
[+]
admin
[-] gmw-posts-locator-functions.php
[edit]
[-] gmw-pt-update-location.php
[edit]
[-] class-gmw-post-category-walker.php
[edit]
[-] gmw-posts-locator-search-results-template-functions.php
[edit]