Skip to content

Instantly share code, notes, and snippets.

@gmazzap
gmazzap / Custom_Reg.php
Last active April 22, 2024 12:16
Just a rough plugin example to answer a WPSE question: How to display Wordpress User Registration Form in front-end of the website?
<?php
namespace Custom_Reg;
class Custom_Reg {
protected $form;
protected $saver;
function __construct( Form $form, Saver $saver ) {