[wpmu-trac] [WordPress MU Trac] #731: divine users_can_register
blog option from registration site option
WordPress MU Trac
wpmu-trac at lists.automattic.com
Wed Aug 27 19:48:10 GMT 2008
#731: divine users_can_register blog option from registration site option
------------------------+---------------------------------------------------
Reporter: jdub | Owner: somebody
Type: defect | Status: new
Priority: normal | Milestone:
Component: component1 | Version:
Severity: normal | Keywords:
------------------------+---------------------------------------------------
My users tend to find it weird that their WPMU blogs don't have any
registration links, particularly when they've turned on the "only users
can comment" option. It basically makes it impossible to comment, because
there's no straightforward way to figure out how to sign up.
Donncha, what do you think about adding something to this effect to WPMU
core? It filters the users_can_register option, seeding it with a value
divined from the site registration option. Works pretty well for me!
(Filing as defect because it's a usability issue.)
{{{
function wpmufrl() {
$registration = get_site_option('registration');
if ($registration == 'all' || $registration == 'user') {
return true;
} else {
return false;
}
}
add_filter('option_users_can_register', 'wpmufrl');
}}}
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/731>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list