Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: To display [Resolved], by the thread’s title


so1o
Participant

@so1o

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');

Skip to toolbar