Har du någonsin velat visa det totala antalet registrerade användare på din site i WordPress?
Sociala bevis, som att visa antalet registrerade användare på din site, uppmuntrar andra att registrera sig.
I den här artikeln visar vi dig hur du visar det totala antalet registrerade användare i WordPress.
Vi kommer att täcka två metoder i det här inlägget, och du kan använda snabblänkarna under för att hoppa till den du vill använda:
Metod 1: Visa antalet registrerade användare med hjälp av ett tillägg till WordPress
Det första du behöver göra är att installera och aktivera pluginet Simple Blog Stats. För mer detaljer, se vår Step-by-Step guide om hur du installerar ett plugin för WordPress.
Efter aktivering måste du besöka Settings ” Simple Blog Stats page för att konfigurera plugin-inställningarna.
Detta tillägg allow you att visa olika statistik från din WordPress website.
Du måste klicka på tabben shortcodes för att förstora den och sedan rulla ner till raden ”antal användare”.
You will see the shortcode [sbs_users]
with two text fields on both sides. Dessa textfält innehåller HTML, och pluginet kommer att add to antalet användare före och efter.
Som standard kommer shortcoden att mata ut HTML som gillar detta:
<span class="sbs-count-users">856</span>
Om du är osäker, kopiera shortcode [sbs_users]
och klicka på knappen ”Save Settings”.
Du kan nu add to denna shortcode till valfri WordPress post eller page. You can also add it to a sidebar widget.
Edit the post or page and add the Shortcode block. Därefter kopierar och klistrar du in din shortcode i blockets inställningar.
På samma sätt kan du också lägga till shortcode blocket i sidebar widgets.
Gå till sidan Appearance ” Widgets och lägg till shortcode-blocket där du vill visa antalet användare.
Metod 2: Visa manuellt antalet registrerade användare i WordPress med kod
Denna metod är obligatorisk för att du ska kunna add to kod till din WordPress site.
Du måste add to följande custom code till din website. You can add it to your theme’s functions.php file or by using the WPCode plugin (recommended)
Om du behöver hjälp med att lägga till kod kan du följa vår tutorial om hur du på ett säkert sätt lägger till customize-kod i WordPress:
// Function to return user count
function wpb_user_count() {
$usercount = count_users();
$result = $usercount['total_users'];
return $result;
}
// Creating a shortcode to display user count
add_shortcode('user_count', 'wpb_user_count');
Den här koden skapar en shortcode [user_count]
som du kan använda i dina WordPress-poster, pages eller i en sidebar widget för att visa antalet användare.
Funktionen addar ej något HTML-format till antalet användare utan returnerar bara antalet. Du kanske vill omsluta shortcoden runt HTML för att använda CSS eller grundläggande HTML-formatering. Till exempel
<p>Join <strong>[user_count]</strong> other users who share your interests:</p>
Så här såg det ut på vår demo site:
Note: Vi har också lagt till en knapp för gratis registrering som redirectar till en custom WordPress sida för registrering av användare.
Ytterligare resurser:
- Bästa tilläggen för användarhantering för WordPress – Våra experter har valt ut de mest användbara tilläggen för att hantera användare på en website i WordPress.
- WordPress user roles and capabilities – If your website is open to user registration, then you may want to read this guide to understand how user roles and permissions work in WordPress.
Det var allt. Vi hoppas att den här artikeln hjälpte dig att lära dig hur du visar det totala antalet registrerade användare i WordPress. Du kanske också vill se vår guide om moderation av registreringar av new användare i WordPress.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.
Syed Balkhi says
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
Godson says
Thank a milli for the guide…. Very helpful
WPBeginner Support says
Glad our guide was helpful
Administratör
papoo says
Hello
thanks for manual method, works fine.
is there a way to add user count in wp REST API?
WPBeginner Support says
You likely could but we don’t have an article on how to do so at the moment.
Administratör
papoo says
i found a way
add shortcode on a page, then access on json with
wp-json/wp/v2/pages/?slug=”name of the page”
and… search the info
B says
Thanks for the manual code!
Is there any way to display the user count from another WordPress site? I have a public facing website and private ”app” that are two different installs and I want to show the app users on the public site.
Angela says
Thanks for this, the code works beautifully!
Chad says
Hey, thanks for this article, its right along the lines of what I am trying to accomplish. Is there a way to only display the subscribers as opposed to the total number of users? I have been scouring the wp codex site but to no avail. I have found a way to populate a list of subscribers but not jsut a total number of them. This would be extremely handy on the website I am building I would love to hear your insight. Thanks again.
Matt says
This might be helpful for you:
// Function to show the user count by role via shortcode
function wpb_user_count($atts) {
$atts = shortcode_atts( array(
’role’ => ”
), $atts );
$user_query = new WP_User_Query( array( ’role’ => $atts[’role’] ) );
// Get the total number of users for the current query. I use (int) only for sanitize.
$result = (int) $user_query->get_total();
return $result;
}
// Creating a shortcode to display user count
add_shortcode(’user_count’, ’wpb_user_count’);
// Use this Shortcode to show user [user_count role=”Subscriber”]
Benedikt says
Hey Guys,
found this article and tried both options and both do not work. Usually I am pretty good in this WP stuff …
Could it be that it does not work with certain themes?
It would be great if you could help:
Here is the page:
(We use the Kleo Theme)
Thanks
Benedikt
Benedikt says
Hey Guys,
found this article and tried both options and both do not work. Usually I am pretty good in this WP stuff …
It would be great if you could help
Thanks
Benedikt