Created
September 17, 2016 16:37
-
-
Save bordoni/88c97800fe799a0c39b39bdbcca5d978 to your computer and use it in GitHub Desktop.
Online Now on The Header
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 | |
| $args = array( | |
| // If Numeric is False, you can customize what shows up using this variable. | |
| 'plural' => __( '%s users online', 'online-now' ), | |
| 'singular' => __( 'One user online', 'online-now' ), | |
| 'zero' => __( 'Zero users online', 'online-now' ), | |
| // If you want numeric, set this to True | |
| 'numeric' => false, | |
| ); | |
| echo OnlineNow::instance()->shortcode_qty( $args ); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment