Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to read bb_topicmeta?

Unlike WP, topic meta is accessed throught the topic object.

update_topicmeta( 5, ‘my_meta’, ‘yay’ );

$topic = get_topic( 5 );

echo $topic->my_meta; // outputs: yay

Skip to toolbar