<?php get_header; ?> & <?php get_footer; ?>
Try
<?php get_header(); ?> & <?php get_footer(); ?>
Try
<?php get_header(); ?> & <?php get_footer(); ?>
damn mistake in typing, I’m trying so but nothing… it doesn’t work…
I wanna add a cutom php file (for example: example.php) in my default wp theme(twentyten)
What exactly the custom php file for? Is this a Custom Page Template?
I wanna put my handmade cv form ( this one: http://fsgroup.ge/wp-content/themes/twentyten/cv.php ) between header and footer…
no need to create whole theme, just need to create one custom page with same header and footer… ((((
Do you have header.php and footer.php ? Make sure you have them on your theme directory. Otherwise nothing will show 🙂
Do you have header.php and footer.php ? Make sure you have them on your theme directory. Otherwise nothing will show 🙂
sure I have… I’m useing default wordpress twentyten theme…
The link I posted is about creating one custom page only not whole theme. Basically, you just need this piece of code
<?php
/*
Template Name: Snarfer
*/
?>
And according to that tutorial
What follows the above five lines of code is up to you.
You may include <?php get_header(); ?> & <?php get_footer(); ?> if you want.