michaeluno / admin-page-framework

Facilitates WordPress plugin and theme development.
http://admin-page-framework.michaeluno.jp/
Other
337 stars 71 forks source link

Term meta #247

Closed szepeviktor closed 8 years ago

szepeviktor commented 8 years ago

Do you plan to support term meta?

For others: Now term meta is stored in wp_options.

michaeluno commented 8 years ago

If you are talking about the one introduced in WordPress v4.4, I don't mind. In that case, a new factory class needs to be introduced.

michaeluno commented 8 years ago

I've uploaded a new branch which includes this feature.

An example is located in /example/term_meta.

This lets you retrieve term meta data with get_term_meta().

    $value = get_term_meta( $iTermID, 'my_filed_id', true );
szepeviktor commented 8 years ago

Thank you.