Create custom page template in Roots

Published on 10th Apr 2013
Create custom page template in RootsCreate custom page template in Roots
Create custom page template in Roots

First create a file inside wp-content/themes/roots with this convention page-filename.php. So in my case, I named it page-ajmalafif.php.

Inside the file, you can customize what to include in it, by default (taken from page-custom.php) it'll be;

1<?php
2/*
3Template Name: Ajmal Afif's
4*/
5?>
6
7<?php get_template_part('templates/page', 'header'); ?>
8<?php get_template_part('templates/content', 'page'); ?>

For the sake of simplicity, let's settle with that for now and we tweak it later.

This note was last updated on 24th Oct 2022,
by
Ajmal Afif