Skip to content

Development Workflow

Brian McCoy edited this page Feb 23, 2018 · 6 revisions

Alloy Core is great at providing the tools you need to integrate website designs into WordPress. Let's say you're going to integrate the "About" page.

Create your template file

In your theme's root directory create a file called template-about.php and set up your class:

<?php
class Template_About extends Core_Template {

}
global $post;
new Template_About( $post->ID );

Clone this wiki locally