Skip to content

Instantly share code, notes, and snippets.

View gene158's full-sized avatar

Gene gene158

View GitHub Profile
@gene158
gene158 / wpforms-display-user-entries.php
Created June 20, 2019 02:07
Custom shortcode to display forms of all submitted entries for current user - WPForms
/**
* Custom shortcode to display forms of all submitted entries for current user.
*
* Usage [wpforms_display_user_entries]
*
*/
function ws_display_user_entries() {
global $current_user;
get_currentuserinfo();
$email = (string) $current_user->user_email;