Assuming the data is saved in a database you could create a total count function. You will obviously need to work on the query as its impossible to answer without knowing what your database looks like. If you aren’t saving the data, then theres no chance your going to get this to work.
Here is an example function
function userTotalSignupCount() {
global $wpdb;
$userTotalSignupCount = $wpdb->get_var("SELECT COUNT(id) FROM yourTable");
return $userTotalSignupCount;
}
Then you can call the function somewhere in a template like
$userTotalSignupCount = userTotalSignupCount();
echo $userTotalSignupCount;
Hopefully that will help you get going.
And if you just wanted to display total WordPress users.
<?php
$result = count_users();
echo 'There are ', $result['total_users'], ' total users';
?>
Related Posts:
- Custom Registration Template/Page
- How to display user registration form on front-end of the website?
- What is an easy way to display a front-end user registration form?
- User registration problem in WordPress
- Registration form labels – add asterisk
- How to create and retrieve data from a special registration form?
- How to redirect new WordPress user to previous page after registering
- How can I create registration form for users which I can assign role and profile picture?
- Adding a new user from the front end
- Downloadable content only for subscribers?
- Create a registration form with a PayPal checkout fee? [closed]
- How can I modify labels in default wordpress registration form? [duplicate]
- WordPress – Users with contact form on profile
- How to call or add password input / generate password / password strenght meter in custom registration form?
- Username from e-mail
- Create register form plus send post
- WordPress – custom user flow registration approval
- How do I register user without being authenticated
- What is & used for
- How to define form action in JSF?
- Free or affordable OCR and ICR (handwriting recognition) SDK?
- What characters are allowed in an email address?
- How to include landing page with form submission?
- How to edit a user profile on the front end?
- How to handle form submission?
- Add error message on password protected page
- how to set from address according to the form input email address for wp_mail()?
- How to get current url in contact form 7
- Is wp_nonce_field vulnerable if you know the action name?
- How to pass on Google Adwords gclid variable to other pages
- using update_user_meta in form to set and get custom meta
- Best way to create multi-step form with data saved to user account for later updating?
- Creating a contact form without a plugin [closed]
- How to submit data from HTML form?
- “Password Strength Unknown” Registration Issue
- show image in mail contact form 7 [closed]
- Can I verify nonce which was generated on a different WP site?
- Submitting post to database then redirecting to paypal
- Autocomplete for taxonomy input boxes on a front end form
- Sending form data via PHPMailer – How to action PHP script from a form
- Contact form 7 Dynamic text – placeholder on GET field
- Settings API erases itself?
- how to handle forms in multiple pages?
- set_query_var doesn’t seem to work on init hook
- How to send multipart form data to WordPress endpoint
- need to add attach thumbnail from my form
- Wp_mail Returning False on Server
- recommended practice for form submission
- Placeholders in Jetpack Contact Form [closed]
- How to update selective options on plugin settings page
- How to hook into user registration process Before user registers
- Built-in data validation function for URLs
- $_POST empty on submit (same code, same form submits normally on local server)
- Gravity Forms skip form if already filled out using cookie?
- Loading scripts & styles from a meta box callback function
- Checkbox won’t check when label is clicked
- One comment per user per post
- Function like is_registration_page to check if current page is registration page
- Looking for a simple approach for handling user $_POST data without AJAX?
- Registration e-mail check with AJAX
- Trying to save and display a wp_editor()
- Is there any good tutorial to write custom login, registration and password recovery forms? [closed]
- Change register form action url
- How to return variables from admin-post.php
- Help with verifying google recaptcha in a custom form
- Nonce actions and names available via open source
- Setting specific image size for specific form upload file field
- How to disable user registration for the default subscriber user role?
- Duplicating/Cloning Multiple Form Fields
- WordPress registration and contact form 7 [closed]
- Contact forms going into spam folder
- Get data from dropdown and update page
- Mail Form in a modal box without plugin
- Using the WordPress selected() function
- Performing a POST action on homepage goes to posts page
- Add contact form
- How am I able to get the value out of cookie array when I push a button?
- 404 on form submit [duplicate]
- How to Process Form Request
- Send custom signup approval email to different Administrators selectively
- Form Processing
- Front End Registration Form Code – Password Field Not Saving
- Reset recaptcha contact form 7 [closed]
- Return to option page after running PHP script
- Saving checkbox/option list status?
- Customize reset password form redirect problem
- What is the valid phone number format accepted by contact-form-7 [closed]
- creating form for wp_remote_post
- How to implement post/redirect/get pattern on contact form
- How to know what submit button the user clicked?
- limit characters when posting from form
- Creating a custom multilingual form
- How to bypass the username as a required field in registration and just use email address instead?
- wordpress not displaying my form
- Adding data to an array in usermeta and displaying it in a loop
- Help with forms and nonces
- Form doesn’t submit on second submit call
- Stripe Error: must provide source or customer [closed]
- How to submit form in a PHP file in WordPress?
- CRUD front end for mySQL in WordPress