Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: =) as the exclusive title text creates unclickable topic


_ck_
Participant

@_ck_

Or simply don’t let the post be made with titles that get sanitized into nothingness, or better yet, titles that are shorter than X characters – something like:

function title_regulation($text) {
if (strlen(trim($text))<8)
bb_die(__('Your title is too short, please say something meaningful!'));

if (strlen($text)>80)
bb_die(__('Your title is too long!'));

return $text;
}
add_filter('pre_topic_title', 'title_regulation',100);

Skip to toolbar