Could we help you? Please click the banners. We are young and desperately need the money
In this very short guide, I'll show you how to make a basic WordPress Template.
If you haven't made a WordPress Theme yet, consider reading this guide first.
Inside your WordPress Theme folder, create a file that is named something along the lines of "template-something.php".
For your Template to work, you need to include a header Comment, just like when making a Theme:
<?php
/**
* Template Name: Something Template
*/
And here is some code you can use as the base of your Template:
get_header();
if (have_posts()) {
//code
}
get_footer();
This is how your code might look like:
If you need more information, check out the official WordPress Documentation on Templates.