Forums
-
- Forum
- Posts
-
- Installation
- 28,499
- Troubleshooting
- 62,656
- Themes
- 10,431
- Plugins
- 15,360
- Requests & Feedback
- 14,972
- Showcase
- 3,256
-
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');