Problems with my new theme
-
Hey everyone!
I’m designing a new website using WordPress and I want to make a custom theme. So far I’ve created header.php, index.php, footer.php and style.css. My goal is to keep everything as simple as possible.
My first problem is that the php tags from WordPress (from the Codex) won’t work. Like the <title> tag. It doesn’t look like it wants to use my CSS either.
My header.php looks like this:
<html> <head> <title><?php wp_title( $sep, $display, $seplocation ); ?></title> <link href="<?php bloginfo( 'pingback_url' ); ?>"> </head> <body> ...
index.php:
<?php get_header(); ?> INNHOLD <?php get_footer(); ?>
footer.php:
</div> </div> </body> </html>
What’s wrong?
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Problems with my new theme’ is closed to new replies.