Forums
-
- Forum
- Posts
-
- Installation
- 28,417
- Troubleshooting
- 62,426
- Themes
- 10,420
- Plugins
- 15,331
- Requests & Feedback
- 14,958
- Showcase
- 3,255
-
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