Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 519 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 519 Bytes

ThemePlate Meta

Usage

use ThemePlate\Meta\MenuMeta;

( new MenuMeta( 'Custom Menu Meta' ) )->fields( $list )->create();
use ThemePlate\Meta\PostMeta;

( new PostMeta( 'Custom Post Meta' ) )->fields( $list )->locaction( 'post_type' )->create();
use ThemePlate\Meta\TermMeta;

( new TermMeta( 'Custom Term Meta' ) )->fields( $list )->locaction( 'taxonomy' )->create();
use ThemePlate\Meta\UserMeta;

( new UserMeta( 'Custom User Meta' ) )->fields( $list )->create();