Forums
-
- Forum
- Posts
-
- Installation
- 28,405
- Troubleshooting
- 62,339
- Themes
- 10,400
- Plugins
- 15,321
- Requests & Feedback
- 14,952
- Showcase
- 3,254
-
Hey Spencer
create a plugin with this code.. that should do the trick.. i think..
function my_resolve_title($id){
global $topic;
if ('yes' == $topic->topic_resolved)
return sprintf(__('[resolved] %s'), $topic->topic_title);
return $topic->topic_title;
}
add_filter( 'topic_title', 'my_resolve_title');