• Hello

    I was wondering how I could convert the following code in a shortcode, so that I can use it in my sidebar and posts. Anyone that can help?

    Thanks in advance!

    <?php
    $result = count_users();
    echo 'There are ', $result['total_users'], ' total users';
    foreach($result['avail_roles'] as $role => $count)
        echo ', ', $count, ' are ', $role, 's';
    echo '.';
    ?>

The topic ‘Convert function to shortcode’ is closed to new replies.