I have created a new page template bios.php
and the code on the page is:
=============================================
<?php
/*
Template Name: Bios
*/
?>
<?php get_header(); ?>
<!– Container –>
<div class=”CON”>
<!– Start SC –>
<div class=”SC”>
<?php include (TEMPLATEPATH . “/menu.php”); ?>
<?php
wp_list_pages(‘child_of=1263’);
?>
</div>
<!– End SC –>
<?php get_sidebar(); ?>
<!– Container –>
</div>
<?php get_footer(); ?>
=============================================
and now what I need to do?
DO I have to create page and subpage? if so then How the page template would apply on created page?
mmm I am confused Can you post any example for it?