Wordpress Web Application Development(Third Edition)
上QQ阅读APP看书,第一时间看更新

Page template implementation

Page templates are a widely used technique in modern WordPress themes. We can create a page template to embed the registration form. Consider the following code for a sample page template:

    /* 
* Template Name : Registration
*/
HTML code for registration form

Next, we have to copy the template inside the theme folder. Finally, we can create a page and assign the page template to display the registration form. Now, let's look at the pros and cons of this technique.