Use this shortcode for display the map anywhere
[gmp id='.get_the_ID().']
';
}
/**
* Register meta box(es).
*/
function asrgm_register_meta_boxes() {
add_meta_box( 'gmap-meta-box', __( 'Map Settings', 'asr_td' ), 'asrgm_my_display_callback', 'gmap-pro','normal','core' );
}
add_action( 'add_meta_boxes', 'asrgm_register_meta_boxes' );
/**
* Meta box display callback.
*
* @param WP_Post $post Current post object.
*/
function asrgm_my_display_callback( $post ) {
wp_nonce_field( basename( __FILE__ ), 'asr_jobs_nonce' );
$asr_stored_meta = get_post_meta( $post->ID ); ?>