热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

wordpress用户注册_如何显示WordPress中的注册用户总数

wordpress用户注册HaveyoueverwantedtoshowthetotalnumberofregisteredusersonyourWordPresssite?Soc

wordpress用户注册

Have you ever wanted to show the total number of registered users on your WordPress site? Social proof like showing the number of registered users on your site, encourages others to register as well. In this article, we will show you how to show total number of registered users in WordPress.

您是否曾经想显示您的WordPress网站上的注册用户总数? 社会证明,例如显示您网站上注册用户的数量,也鼓励其他人也进行注册。 在本文中,我们将向您展示如何显示WordPress中的注册用户总数。

How to Show Total Number of Registered Users in WordPress

方法1:使用WordPress插件显示注册用户数 (Method 1: Show Registered User Count Using a WordPress Plugin)

First thing you need to do is install and activate the Simple Blog Stats plugin. For more details, see our step by step guide on how to install a WordPress plugin.

您需要做的第一件事是安装并激活Simple Blog Stats插件。 有关更多详细信息,请参阅有关如何安装WordPress插件的分步指南。

Upon activation, you need to visit Settings » Simple Blog Stats page to configure plugin settings.

激活后,您需要访问设置»简单博客统计信息页面来配置插件设置。

Settings page for Simple Blog Stats

This plugin allows you to show different stats from your WordPress site. You need to click on the shortcodes tab to expand it and then scroll down to the ‘number of users’ row.

该插件可让您显示WordPress网站的不同统计信息。 您需要单击“简码”选项卡将其展开,然后向下滚动到“用户数”行。

Users shortcode settings

You will see the shortcode [sbs_users] with two text fields on both sides. These text fields contain HTML the plugin will add before and after the number of users.

您将看到在两侧都有两个文本字段的简码 [sbs_users] 。 这些文本字段包含插件将在用户数量之前和之后添加HTML。

By default, the shortcode will output HTML like this:

默认情况下,简码将输出如下所示HTML:


856

If you are unsure, then just copy the shortcode [sbs_users] and click on the save settings button.

如果不确定,则只需复制简码[sbs_users] ,然后单击“保存设置”按钮。

You can now add this shortcode to any WordPress post or page. You can also add it to a sidebar widget. If the shortcode does not work in the widget, then follow instructions in our guide on how to use shortcodes in your WordPress sidebar widget.

现在,您可以将此简码添加到任何WordPress 帖子或页面中 。 您也可以将其添加到侧边栏小部件中 。 如果该短代码在窗口小部件中不起作用,请按照我们的指南中有关如何在WordPress边栏窗口小部件中使用短代码的说明进行操作 。

方法2:使用代码手动显示WordPress中的注册用户数 (Method 2: Manually Show Number of Registered Users in WordPress with Code)

This method requires you to add code to your WordPress site. If you haven’t done this before, then see our beginner’s guide on pasting snippets from web into WordPress.

此方法要求您将代码添加到WordPress网站。 如果您以前从未这样做过,请参阅有关将网页摘要粘贴到WordPress的初学者指南。

You need to add the following code to your theme’s functions.php file or a site-specific plugin.

您需要将以下代码添加到主题的functions.php文件或特定于站点的插件中 。


// 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');

This code creates shortcode [user_count] which you can use in your WordPress posts, pages, or a sidebar widget to display the user count.

这段代码创建了简码[user_count] ,您可以在WordPress帖子,页面或侧边栏小部件中使用它来显示用户数。

The function does not add any HTML formatting to the user count and simply returns the number. You may want to wrap the shortcode around HTML to use CSS or basic HTML formatting. For example:

该函数不会向用户计数中添加任何HTML格式,而只是返回数字。 您可能需要将简短代码包装在HTML周围,以使用CSS或基本HTML格式。 例如:


Join [user_count] other users who share your interest:



Here is how it looked on our demo site:

这是在我们的演示站点上的外观:

Showing total number of users in WordPress widget

Note: We added a free signup button that redirected to a custom WordPress user registration page.

注意:我们添加了一个免费的注册按钮,可将其重定向到自定义WordPress用户注册页面 。

That’s all, we hope this article helped you learn how to show the total number of registered users in WordPress. You may also want to see our guide on how to moderate new user registrations in WordPress.

仅此而已,我们希望本文能帮助您学习如何显示WordPress中的注册用户总数。 您可能还希望查看我们的指南,了解如何审核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.

如果您喜欢这篇文章,请订阅我们的YouTube频道 WordPress视频教程。 您也可以在Twitter和Facebook上找到我们。

翻译自: https://www.wpbeginner.com/wp-tutorials/how-to-show-total-number-of-registered-users-in-wordpress/

wordpress用户注册



推荐阅读
  • Android 构建基础流程详解
    Android 构建基础流程详解 ... [详细]
  • 为什么多数程序员难以成为架构师?
    探讨80%的程序员为何难以晋升为架构师,涉及技术深度、经验积累和综合能力等方面。本文将详细解析Tomcat的配置和服务组件,帮助读者理解其内部机制。 ... [详细]
  • 如果应用程序经常播放密集、急促而又短暂的音效(如游戏音效)那么使用MediaPlayer显得有些不太适合了。因为MediaPlayer存在如下缺点:1)延时时间较长,且资源占用率高 ... [详细]
  • 在对WordPress Duplicator插件0.4.4版本的安全评估中,发现其存在跨站脚本(XSS)攻击漏洞。此漏洞可能被利用进行恶意操作,建议用户及时更新至最新版本以确保系统安全。测试方法仅限于安全研究和教学目的,使用时需自行承担风险。漏洞编号:HTB23162。 ... [详细]
  • 一个建表一个执行crud操作建表代码importandroid.content.Context;importandroid.database.sqlite.SQLiteDat ... [详细]
  • 我有一个从C项目编译的.o文件,该文件引用了名为init_static_pool ... [详细]
  • This feature automatically validates new regions using the AWS SDK, ensuring compatibility and accuracy. ... [详细]
  • Hadoop的文件操作位于包org.apache.hadoop.fs里面,能够进行新建、删除、修改等操作。比较重要的几个类:(1)Configurati ... [详细]
  • 本文详细介绍了如何在Linux系统(以CentOS为例)上彻底卸载Zimbra邮件系统,包括停止服务、删除文件和用户等步骤。 ... [详细]
  • 大家好,我是李白。本文将分享一个从零开始的全栈项目,涵盖了设计、前端、后端和服务端的全面学习过程。通过这个项目,我希望能够帮助初学者更好地理解和掌握全栈开发的技术栈。 ... [详细]
  • 原文网址:https:www.cnblogs.comysoceanp7476379.html目录1、AOP什么?2、需求3、解决办法1:使用静态代理4 ... [详细]
  • com.hazelcast.config.MapConfig.isStatisticsEnabled()方法的使用及代码示例 ... [详细]
  • 本文详细介绍了MySQL数据库的基础语法与核心操作,涵盖从基础概念到具体应用的多个方面。首先,文章从基础知识入手,逐步深入到创建和修改数据表的操作。接着,详细讲解了如何进行数据的插入、更新与删除。在查询部分,不仅介绍了DISTINCT和LIMIT的使用方法,还探讨了排序、过滤和通配符的应用。此外,文章还涵盖了计算字段以及多种函数的使用,包括文本处理、日期和时间处理及数值处理等。通过这些内容,读者可以全面掌握MySQL数据库的核心操作技巧。 ... [详细]
  • 本文详细介绍了 InfluxDB、collectd 和 Grafana 的安装与配置流程。首先,按照启动顺序依次安装并配置 InfluxDB、collectd 和 Grafana。InfluxDB 作为时序数据库,用于存储时间序列数据;collectd 负责数据的采集与传输;Grafana 则用于数据的可视化展示。文中提供了 collectd 的官方文档链接,便于用户参考和进一步了解其配置选项。通过本指南,读者可以轻松搭建一个高效的数据监控系统。 ... [详细]
  • 在HTML布局中,即使将 `top: 0%` 和 `left: 0%` 设置为元素的定位属性,浏览器中仍然会出现空白填充。这个问题通常与默认的浏览器样式、盒模型或父元素的定位方式有关。为了消除这些空白,可以考虑重置浏览器的默认样式,确保父元素的定位方式正确,并检查是否有其他CSS规则影响了元素的位置。 ... [详细]
author-avatar
28划生12_928
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有