| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/repository/wp-content/plugins/wp-members/inc/ |
Upload File : |
<?php
/**
* Invokes a login form.
*
* @since 3.2.0
*
* @global object $wpmem
* @param array $args {
* Possible arguments for creating the form.
*
* @type string id
* @type string tag
* @type string form
* @type string redirect_to
* }
* @return string $html
*/
/*function wpmem_login_form( $args ) {
global $wpmem;
return $wpmem->forms->login_form( $args );
}*/
/**
* Invokes a registration or user profile update form.
*
* @since 3.2.0
*
* @global object $wpmem
* @param array $args {
* Possible arguments for creating the form.
*
* @type string id
* @type string tag
* @type string form
* @type string product
* @type string include_fields
* @type string exclude_fields
* @type string redirect_to
* @type string heading
* }
* @return string $html
*/
function wpmem_register_form( $args ) {
global $wpmem;
return $wpmem->forms->register_form( $args );
}