Creating custom templates on wordpress 2.7+

Creating custom templates on wordpress 2.7+

From ThaiiS Note (Wiki)

Jump to: navigation, search

«« wordpress

Creating Your Own Page Templates

  • create a file. Page Template somename.php
  • put the following:
<?php
/*
Template Name: some template name
*/
?>

Examples of Pages and Templates

<?php
/*
Template Name: some template name
*/
?>

<?php get_header(); ?>
//loop
<?php get_footer(); ?>

more