The best way to add PHP pages in WordPress to Page Template
in the child-theme
folder.
How to create Page Template
in WordPress.
Create a file named template-custom.php
and put it in /wp-content/theme/my-theme/
.
<?php
/*
* Template Name: Custom Template
* Custom template used for custom php code display
* @package Portafolio WordPress Theme
* @author Gufran Hasan
* @copyright Copyright templatecustom.com
* @link http://www.templatecustom.com
*/
?>
<?php get_header(); ?>
<?php
//write code here
?>
<?php get_footer(); ?>