miya / custom-field-geometry
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Requires
- miya/custom-field: ^2.0
This package is not auto-updated.
Last update: 2024-12-22 05:08:45 UTC
README
Add a custom field to save geometries to the edit screen of the specific post type for WordPress.
Install
$ composer require miya/custom-field-geometry
How to use
<?php
require_once( dirname( __FILE__ ) . '/vendor/autoload.php' );
$map = new \Miya\WP\Custom_Field\Geometry( 'geometry', 'Latitude and Longitude' );
$map->add( 'post' ); // Set post type to display meta box.