Adding Post Options
Modify your post/custom post type with brand new settings
WordPress powered with Post Type meta boxes. Add Meta Box to the desired post type with a unique ID.
And we need to add fields to this Meta Box:
Custom Fields
You can easily use default WordPress functions such as get_post_meta()
, get_option()
or get_term_meta()
. But for the option we built-in function to get any param you want:
Last updated