The default page home.php is under /themes/home/ directory. Instead of creating a About page from within ADMIN function, I like to create it as a regular php page just like home.php. My home.php code is like
<?php get_header(); ?>
home contents goes here
<?php get_footer(); ?>
I'd like to have the about.php similar to it
<?php get_header(); ?>
Aboutcontents goes here
<?php get_footer(); ?>
First of all can I do this? Is so, where should I put the about.php so from header.php I can link to it.
Thanks