Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Good model plugin for newbie plugin author to study?

Yeah, really avoid doing anything to the tables and use topicmeta instead. By far easiest for you and nicest for the users, too, plus the additional overhead is minimal.

The metadata is returned when you call get_topic() like Sam said.

$topic = get_topic();
echo $topic->topic_geolocation; //echoes whatever

Skip to toolbar