Advertising
- Anonymous
- Friday, May 11th, 2012 at 4:54:21am MDT
- functions.php:
- <?php
- register_sidebar( array('name' => "sidebar1", 'id' => "sidebar1") );
- register_sidebar( array('name' => "footerbar1", 'id' => "footerbar1") );
- ?>
- Header.php:
- <!DOCTYPE HTML>
- <html <? language_attributes(); ?>>
- <head>
- <title><? bloginfo('name'); ?></title>
- <meta charset="UTF-8" />
- <link rel="stylesheet" type="text/css" href="<?php bloginfo( 'stylesheet_url' ); ?>" media="all" />
- </head>
- <body>
- <div id="parappa">
- <header>
- <h1><? bloginfo('name'); ?></h1>
- </header>
- index.php:
- <? get_header(); ?>
- <div id="listposts">
- <?php while ( have_posts() ) : the_post(); ?>
- <article class="listedpost">
- <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
- <?php the_title_attribute(); ?>
- </a></h2>
- <p><?php the_content(); ?></p>
- </article>
- <? endwhile; ?>
- </div>
- <ul id="sidebar">
- <?php
- dynamic_sidebar( 'sidebar1' ); // displaying the bar we made in functions.php
- ?>
- </ul>
- <? get_footer(); ?>
- footer.php:
- <footer>
- <ul><?php
- dynamic_sidebar( 'footerbar1' ); // displaying the bar we made in functions.php
- ?>
- <li>Theme: <a href="http://fortelle.no/blog/2012/toosimple">Too Simple</a> by <a href="http://fortelle.no/">Fortelle</a></li>
- </ul>
- </footer>
- </div> <!-- parappa -->
- </body>
- </html>
advertising
Update the Post
Either update this post and resubmit it with changes, or make a new post.
You may also comment on this post.
Please note that information posted here will expire by default in one month. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.