archives.php file not working, need help…
-
So I’m working on this site: https://world-of-smiles.theportlandco.com/archives/64
And the /archives page isn’t inheriting my archives.php file as it’s template and I don’t know why, can someone help?
Here’s the code to archives.php:
<?php /** * @package WordPress * @subpackage Default_Theme */ /* Template Name: Archives */ ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <script src="<?php bloginfo('template_directory'); ?>/scripts/css_browser_selector.js" type="text/javascript"></script> <?php wp_head(); ?> </head> <body> <div class="wrapper"> <!-- BEGGINING OF ROW-1 --> <!-- BEGGINING OF ROW-1 --> <!-- BEGGINING OF ROW-1 --> <div class="row-1"> <!-- BEGINNING OF ROW-1-COL-1 --> <!-- BEGINNING OF ROW-1-COL-1 --> <div class="row-1-col-1"> <p class="row-1-col-1-motto">Education and prevention lead to healthy smiles and happy kids.</p> <img src="<?php bloginfo('template_directory'); ?>/image-rotator.php" alt="" /> <img src="<?php bloginfo('template_directory'); ?>/images/small-logo.gif" alt="World of Smiles Pediatric Dentisry Logo" /> <p class="row-1-col-1-address">11790 SW Barnes Road</p> <p class="row-1-col-1-address">Building A, Suite 280</p> <p class="row-1-col-1-address">Portland, OR 97225</p> <p class="row-1-col-1-address">(503) 626-9700</p> </div><!-- END OF ROW-1-COL-1 --> <!-- BEGINNING OF ROW-1-COL-2 --> <!-- BEGINNING OF ROW-1-COL-2 --> <table cellpadding="0" cellspacing="0" style="float: left;"> <tr valign="top"> <td class="row-1-col-2" id="row-1-col-2-archives"> <img class="row-1-col-2-header" src="<?php bloginfo('template_directory'); ?>/images/row-1-col-2/archives-header.png" alt="" /> <p class="row-1-col-2-page-title"><?php echo wp_title("", false, ""); ?></p> <span style="float: left; width: inherit;"> <div id="content" class="widecolumn"> <?php get_search_form(); ?> <h2>Archives by Month:</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> <h2>Archives by Subject:</h2> <ul> <?php wp_list_categories(); ?> </ul> </div> </span> </td> </tr> <tr> <td> <img style="float: left; margin: 0 0 0 5px;" src="<?php bloginfo('template_directory'); ?>/images/row-1-col-2/archives-footer.png" alt="" /> </td> </tr> </table><!-- END OF ROW-1-COL-2 --> <!-- BEGINNING OF ROW-1-COL-3 --> <!-- BEGINNING OF ROW-1-COL-3 --> <div class="row-1-col-3" id="row-1-col-3-archives"> <!-- This lists the navigation for all "Pages" within the account --> <?php wp_list_pages('title_li'); ?> </div><!-- END OF ROW-1-COL-3 --> </div><!-- END OF ROW-1 --> <!-- BEGINNING OF ROW-2 --> <!-- BEGINNING OF ROW-2 --> <!-- BEGINNING OF ROW-2 --> <div class="row-2"> <p><a href="site-credits">Site Credits</a> :: © World of Smiles <?php echo date("Y"); ?></p> </div><!-- END OF ROW-2 --> </div> </body> </html>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘archives.php file not working, need help…’ is closed to new replies.