コード例 #1
0
ファイル: geopress.php プロジェクト: netconstructor/geopress
function the_address()
{
    global $post;
    $geo = GeoPress::get_geo($post->ID);
    $addr = $geo->loc;
    return $addr;
}
コード例 #2
0
ファイル: geopress.php プロジェクト: ajturner/geopress
    function location_edit_form()
    {
        global $post_ID;
        $geo = GeoPress::get_geo($post_ID);
        ?>

<?php 
        GeoPress::geopress_new_location_form($geo);
    }