Hi,
I am using a wordpress template in php like this:
<?php
include('wp-blog-header.php');
get_header();
?>
...Hello World...
<?php get_footer(); ?>
ok, it works good... but the contents of title and other meta tags are empty. How can I change the header contents or use my own $variables inside the get_header() section? it doesnt work like this:
$test="Blabla";
get_header();
.. inside a wordpress header template:
echo $test;
the $test variable is empty :(.. any ideas? thanks!