Forums
-
- Forum
- Posts
-
- Installation
- 28,432
- Troubleshooting
- 62,513
- Themes
- 10,430
- Plugins
- 15,337
- Requests & Feedback
- 14,964
- Showcase
- 3,256
-
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