{"id":10177,"date":"2016-02-12T07:15:14","date_gmt":"2016-02-12T12:15:14","guid":{"rendered":"https:\/\/docs.gravityforms.com\/?post_type=gdoc&#038;p=10177"},"modified":"2025-01-07T08:00:06","modified_gmt":"2025-01-07T13:00:06","slug":"gf_user_registration","status":"publish","type":"post","link":"https:\/\/docs.gravityforms.com\/gf_user_registration\/","title":{"rendered":"GF_User_Registration"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-introduction\">Introduction<\/h2>\n\n\n\n<p>GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on; it extends the <a href=\"\/gffeedaddon\" data-autolink=\"autolink_gffeedaddon\">GFFeedAddOn<\/a> class which is part of the add-on framework. Below are a few functions which you may find useful when working on your own custom code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-gf-user-registration\">gf_user_registration()<\/h2>\n\n\n\n<p>The gf_user_registration() function is used to return an instance of the GF_User_Registration class.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-maybe-process-feed\">maybe_process_feed()<\/h2>\n\n\n\n<p>Triggers processing of the User Registration feeds for the specified form and entry objects.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n$entry = gf_user_registration()-&gt;maybe_process_feed( $entry, $form );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$entry<\/strong> <a href=\"\/entry-object\" data-autolink=\"autolink_entry-object\">Entry Object<\/a>\n<p>The Entry Object to be processed.<\/p>\n<\/li>\n<li>\n<p><strong>$form<\/strong> <a href=\"\/form-object\" data-autolink=\"autolink_form-object\">Form Object<\/a><\/p>\n<p>The Form Object to be processed.<\/p>\n<\/li>\n<li>\n<p><strong>Returns<\/strong> <a href=\"\/entry-object\" data-autolink=\"autolink_entry-object\">Entry Object<\/a><\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-get-single-submission-feed\">get_single_submission_feed()<\/h2>\n\n\n\n<p>Retrieves the feed for the specified form and entry objects.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n$feed = gf_user_registration()-&gt;get_single_submission_feed( $entry, $form );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$entry<\/strong> <a href=\"\/entry-object\" data-autolink=\"autolink_entry-object\">Entry Object<\/a>\n<p>The Entry Object to be processed.<\/p>\n<\/li>\n<li>\n<p><strong>$form<\/strong> <a href=\"\/form-object\" data-autolink=\"autolink_form-object\">Form Object<\/a><\/p>\n<p>The Form Object to be processed.<\/p>\n<\/li>\n<li>\n<p><strong>Returns<\/strong> <a href=\"\/feed-object\" data-autolink=\"autolink_feed-object\">Feed Object<\/a>|<a href=\"\/boolean\" data-autolink=\"autolink_boolean\">boolean<\/a><\/p>\n<p>The feed which was used to process the supplied entry object or false if a feed wasn&#8217;t processed for the entry and an active feed with matching conditional logic could not be found.<\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-get-meta-value\">get_meta_value()<\/h2>\n\n\n\n<p>Retrieves the value to be used for the specified meta key.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n$value = gf_user_registration()-&gt;get_meta_value( $meta_key, $meta, $form, $entry );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$meta_key<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a>\n<p>The meta key for the field which was mapped when configuring the feed.<\/p>\n<\/li>\n<li>\n<p><strong>$meta<\/strong> <a href=\"\/user-registration-feed-meta\" data-autolink=\"autolink_user-registration-feed-meta\">User Registration Feed Meta<\/a><\/p>\n<p>The array containing the feed properties.<\/p>\n<\/li>\n<li>\n<p><strong>$form<\/strong> <a href=\"\/form-object\" data-autolink=\"autolink_form-object\">Form Object<\/a><\/p>\n<p>The Form Object being processed.<\/p>\n<\/li>\n<li>\n<p><strong>$entry<\/strong> <a href=\"\/entry-object\" data-autolink=\"autolink_entry-object\">Entry Object<\/a><\/p>\n<p>The Entry Object being processed.<\/p>\n<\/li>\n<li>\n<p><strong>Returns<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a><\/p>\n<p>The value matching the meta mapping for the given meta key or if not found, an empty string.<\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-add-validation-error\">add_validation_error()<\/h2>\n\n\n\n<p>Useful when performing custom validation using the <a href=\"\/gform_user_registration_validation\" data-autolink=\"autolink_gform_user_registration_validation\">gform_user_registration_validation<\/a> filter to add a custom validation error message.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n$form = gf_user_registration()-&gt;add_validation_error( $field_id, $form, $message );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$field_id<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a>\n<p>The ID of the field the validation error should be applied to.<\/p>\n<\/li>\n<li>\n<p><strong>$form<\/strong> <a href=\"\/form-object\" data-autolink=\"autolink_form-object\">Form Object<\/a><\/p>\n<p>The Form Object to be processed.<\/p>\n<\/li>\n<li>\n<p><strong>$message<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a><\/p>\n<p>The validation message to be applied to the field.<\/p>\n<\/li>\n<li>\n<p><strong>Returns<\/strong> <a href=\"\/form-object\" data-autolink=\"autolink_form-object\">Form Object<\/a><\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-get-user-by-entry-id\">get_user_by_entry_id()<\/h2>\n\n\n\n<p>Retrieve the user object or id for the user which was created or updated by the supplied entry id.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n$user    = gf_user_registration()-&gt;get_user_by_entry_id( $entry_id );\n$user_id = gf_user_registration()-&gt;get_user_by_entry_id( $entry_id, true );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$entry_id<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a>\n<p>The ID of the entry the user was created or updated from.<\/p>\n<\/li>\n<li>\n<p><strong>$id_only<\/strong> <a href=\"\/boolean\" data-autolink=\"autolink_boolean\">boolean<\/a><\/p>\n<p>Defaults to false. Indicates if the user ID should be returned instead of the full WP_User object<\/p>\n<\/li>\n<li>\n<p><strong>Returns<\/strong> <a href=\"\/boolean\" data-autolink=\"autolink_boolean\">boolean<\/a>|<a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a>|<a href=\"https:\/\/developer.wordpress.org\/reference\/classes\/wp_user\/\">WP_User<\/a><\/p>\n<p>False if a user wasn&#8217;t created or updated from the entry, or the user id or WP_User object.<\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-get-site-by-entry-id\">get_site_by_entry_id()<\/h2>\n\n\n\n<p>Retrieve the id of the site which was created or updated by the supplied entry id.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n$site = gf_user_registration()-&gt;get_site_by_entry_id( $entry_id );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$entry_id<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a>\n<p>The ID of the entry the user was created or updated from.<\/p>\n<\/li>\n<li>\n<p><strong>Returns<\/strong> <a href=\"\/boolean\" data-autolink=\"autolink_boolean\">boolean<\/a>|<a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a><\/p>\n<p>False if a site wasn&#8217;t created or updated from the entry, or the site id.<\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-insert-feed\">insert_feed()<\/h2>\n\n\n\n<p>The insert_feed() method can be used to add User Registration feeds.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\n$feed_id = gf_user_registration()-&gt;insert_feed( $form_id, $is_active, $meta );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$form_id<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a>\n<p>The ID of the form this feed will be used with.<\/p>\n<\/li>\n<li>\n<p><strong>$is_active<\/strong> <a href=\"\/boolean\" data-autolink=\"autolink_boolean\">boolean<\/a><\/p>\n<p>Is this feed active or inactive.<\/p>\n<\/li>\n<li>\n<p><strong>$meta<\/strong> <a href=\"\/user-registration-feed-meta\" data-autolink=\"autolink_user-registration-feed-meta\">User Registration Feed Meta<\/a><\/p>\n<p>An associative array containing the properties which determine if a user will be updated or created when the feed is processed.<\/p>\n<\/li>\n<li>\n<p><strong>Returns<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a><\/p>\n<p>The ID of the new feed.<\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-add-note\">add_note()<\/h2>\n\n\n\n<p>Add a note to the specified Entry.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\ngf_user_registration()-&gt;add_note( $entry_id, $note, $note_type );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$entry_id<\/strong> <a href=\"\/integer\" data-autolink=\"autolink_integer\">integer<\/a>\n<p>The ID of the Entry this note should be added to.<\/p>\n<\/li>\n<li>\n<p><strong>$note<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a><\/p>\n<p>The note to be added.<\/p>\n<\/li>\n<li>\n<p><strong>$note_type<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a><\/p>\n<p>The type of note to be added. <em>Example values: note, success, or error.<\/em><\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-log-debug\">log_debug()<\/h2>\n\n\n\n<p>Writes a debug message to the log file for the User Registration Add-On. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\ngf_user_registration()-&gt;log_debug( $message );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$message<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a>\n<p>The message to be written to the User Registration log.<\/p>\n<\/li>\n<\/ul>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-log-error\">log_error()<\/h2>\n\n\n\n<p>Writes an error message to the log file for the User Registration Add-On. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><pre class=\"brush: php; title: ; notranslate\" title=\"\">\ngf_user_registration()-&gt;log_error( $message );\n<\/pre><\/pre>\n\n\n\n<div class=\"gf-docs-parameters\">\n<ul>\n<li><strong>$message<\/strong> <a href=\"\/string\" data-autolink=\"autolink_string\">string<\/a>\n<p>The message to be written to the User Registration log.<\/p>\n<\/li>\n<\/ul>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on; it extends the GFFeedAddOn class which is part of the add-on framework.<\/p>\n","protected":false},"author":16,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_autodraft_ids":[],"_sb_is_suggestion_mode":false,"_sb_show_suggestion_boards":false,"_sb_show_comment_boards":false,"_sb_suggestion_history":"","_sb_update_block_changes":"","_is_real_time_mode":false,"_realtime_collaborators":"","footnotes":"","jetpack_post_was_ever_published":false,"cf_checklist_status":[]},"categories":[216],"tags":[],"class_list":["post-10177","post","type-post","status-publish","format-standard","hentry","category-user-registration-filters","wpautop"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.7) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>GF_User_Registration - Gravity Forms Documentation<\/title>\n<meta name=\"description\" content=\"GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on, it extends the GFFeedAddOn class which is part of the add-on framework.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/docs.gravityforms.com\/gf_user_registration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GF_User_Registration\" \/>\n<meta property=\"og:description\" content=\"GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on, it extends the GFFeedAddOn class which is part of the add-on framework.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.gravityforms.com\/gf_user_registration\/\" \/>\n<meta property=\"og:site_name\" content=\"Gravity Forms Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2016-02-12T12:15:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-01-07T13:00:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2023\/08\/gf-docs-default-v3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"544\" \/>\n\t<meta property=\"og:image:height\" content=\"288\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Justin Pakes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@gravityforms\" \/>\n<meta name=\"twitter:site\" content=\"@gravityforms\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Justin Pakes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/\"},\"author\":{\"name\":\"Justin Pakes\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/person\\\/8a88745ec2ee5bc1bb24eea8634bf376\"},\"headline\":\"GF_User_Registration\",\"datePublished\":\"2016-02-12T12:15:14+00:00\",\"dateModified\":\"2025-01-07T13:00:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/\"},\"wordCount\":627,\"publisher\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\"},\"articleSection\":[\"User Registration Filters\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/\",\"name\":\"GF_User_Registration - Gravity Forms Documentation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#website\"},\"datePublished\":\"2016-02-12T12:15:14+00:00\",\"dateModified\":\"2025-01-07T13:00:06+00:00\",\"description\":\"GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on, it extends the GFFeedAddOn class which is part of the add-on framework.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/gf_user_registration\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/docs.gravityforms.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GF_User_Registration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#website\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/\",\"name\":\"Gravity Forms Documentation\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/docs.gravityforms.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#organization\",\"name\":\"Gravity Forms\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/gravity-forms-2020-logo-stacked.png\",\"contentUrl\":\"https:\\\/\\\/docs.gravityforms.com\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/gravity-forms-2020-logo-stacked.png\",\"width\":392,\"height\":515,\"caption\":\"Gravity Forms\"},\"image\":{\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/gravityforms\",\"http:\\\/\\\/@gravityforms.com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/docs.gravityforms.com\\\/#\\\/schema\\\/person\\\/8a88745ec2ee5bc1bb24eea8634bf376\",\"name\":\"Justin Pakes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g\",\"caption\":\"Justin Pakes\"},\"url\":\"https:\\\/\\\/docs.gravityforms.com\\\/author\\\/pakes\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"GF_User_Registration - Gravity Forms Documentation","description":"GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on, it extends the GFFeedAddOn class which is part of the add-on framework.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/docs.gravityforms.com\/gf_user_registration\/","og_locale":"en_US","og_type":"article","og_title":"GF_User_Registration","og_description":"GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on, it extends the GFFeedAddOn class which is part of the add-on framework.","og_url":"https:\/\/docs.gravityforms.com\/gf_user_registration\/","og_site_name":"Gravity Forms Documentation","article_published_time":"2016-02-12T12:15:14+00:00","article_modified_time":"2025-01-07T13:00:06+00:00","og_image":[{"width":544,"height":288,"url":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2023\/08\/gf-docs-default-v3.png","type":"image\/png"}],"author":"Justin Pakes","twitter_card":"summary_large_image","twitter_creator":"@gravityforms","twitter_site":"@gravityforms","twitter_misc":{"Written by":"Justin Pakes","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/docs.gravityforms.com\/gf_user_registration\/#article","isPartOf":{"@id":"https:\/\/docs.gravityforms.com\/gf_user_registration\/"},"author":{"name":"Justin Pakes","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/person\/8a88745ec2ee5bc1bb24eea8634bf376"},"headline":"GF_User_Registration","datePublished":"2016-02-12T12:15:14+00:00","dateModified":"2025-01-07T13:00:06+00:00","mainEntityOfPage":{"@id":"https:\/\/docs.gravityforms.com\/gf_user_registration\/"},"wordCount":627,"publisher":{"@id":"https:\/\/docs.gravityforms.com\/#organization"},"articleSection":["User Registration Filters"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/docs.gravityforms.com\/gf_user_registration\/","url":"https:\/\/docs.gravityforms.com\/gf_user_registration\/","name":"GF_User_Registration - Gravity Forms Documentation","isPartOf":{"@id":"https:\/\/docs.gravityforms.com\/#website"},"datePublished":"2016-02-12T12:15:14+00:00","dateModified":"2025-01-07T13:00:06+00:00","description":"GF_User_Registration is the class which houses the main functionality of the Gravity Forms User Registration Add-on, it extends the GFFeedAddOn class which is part of the add-on framework.","breadcrumb":{"@id":"https:\/\/docs.gravityforms.com\/gf_user_registration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.gravityforms.com\/gf_user_registration\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.gravityforms.com\/gf_user_registration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.gravityforms.com\/"},{"@type":"ListItem","position":2,"name":"GF_User_Registration"}]},{"@type":"WebSite","@id":"https:\/\/docs.gravityforms.com\/#website","url":"https:\/\/docs.gravityforms.com\/","name":"Gravity Forms Documentation","description":"","publisher":{"@id":"https:\/\/docs.gravityforms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.gravityforms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.gravityforms.com\/#organization","name":"Gravity Forms","url":"https:\/\/docs.gravityforms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/logo\/image\/","url":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2020\/01\/gravity-forms-2020-logo-stacked.png","contentUrl":"https:\/\/docs.gravityforms.com\/wp-content\/uploads\/2020\/01\/gravity-forms-2020-logo-stacked.png","width":392,"height":515,"caption":"Gravity Forms"},"image":{"@id":"https:\/\/docs.gravityforms.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/gravityforms","http:\/\/@gravityforms.com"]},{"@type":"Person","@id":"https:\/\/docs.gravityforms.com\/#\/schema\/person\/8a88745ec2ee5bc1bb24eea8634bf376","name":"Justin Pakes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/791cb5bec00c6dd4bec2e80cf4df9638297207d8f77890c96b6b483be434ecea?s=96&d=mm&r=g","caption":"Justin Pakes"},"url":"https:\/\/docs.gravityforms.com\/author\/pakes\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pdGaEa-2E9","_links":{"self":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/10177","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/users\/16"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/comments?post=10177"}],"version-history":[{"count":5,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/10177\/revisions"}],"predecessor-version":[{"id":42064,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/posts\/10177\/revisions\/42064"}],"wp:attachment":[{"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/media?parent=10177"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/categories?post=10177"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.gravityforms.com\/wp-json\/wp\/v2\/tags?post=10177"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}