Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created June 14, 2012 07:00
Show Gist options
  • Save DrewAPicture/2928548 to your computer and use it in GitHub Desktop.
Save DrewAPicture/2928548 to your computer and use it in GitHub Desktop.
Verbose or compact?
<?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