Created
June 14, 2012 07:00
-
-
Save DrewAPicture/2928548 to your computer and use it in GitHub Desktop.
Verbose or compact?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! wp_is_large_network( 'users' ) ) { | |
$num = '<a href="' . network_admin_url('users.php') . '">' . $num . '</a>'; | |
$text = '<a href="' . network_admin_url('users.php') . '">' . $text . '</a>'; | |
} else { | |
$num = '<a href="' . network_admin_url('users.php') . '">10,000+</a>'; | |
$text = '<a href="' . network_admin_url('users.php') . '">' . $text . '</a>'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment