• Hallo,
    at my new theme (blackbird) the tag sites don′t appear (www.domain.com/tag/keyword). You can only see the header, but no sidebar, no footer, no main content. Does anyone have an idea? Many thanks in advance! Here you can see the tag.php

    <?php
    /**
     * The template used to display Tag Archive pages
     *
     * @package WordPress
     *
     */
    ?>
    <?php get_header(); ?>
    <div class="container_24">
        <div class="grid_24">
            <div class="page-heading">
                <h1>
                    <?php printf(__('Tag Archives: %s', 'local-business'), '' . blackbird('', false) . ''); ?>
                </h1>
            </div>
        </div>
        <div class="clear"></div>
    </div>
    <!--Start Page Content -->
    <div class="page-content-container">
        <div class="container_24">
            <div class="grid_24">
                <div class="page-content">
                    <div class="grid_16 alpha">
                        <div class="content-bar">
                            <?php get_template_part('loop', 'index'); ?>
                            <div class="clear"></div>
                            <nav id="nav-single"> <span class="nav-previous">
                                    <?php next_posts_link(__('&larr; Older posts', 'black-bird')); ?>
                                </span> <span class="nav-next">
                                    <?php previous_posts_link(__('Newer posts &rarr;', 'black-bird')); ?>
                                </span> </nav>
                        </div>
                    </div>
                    <div class="grid_8 omega">
                        <!--Start Sidebar-->
                        <?php get_sidebar(); ?>
                        <!--End Sidebar-->
                    </div>
                </div>
            </div>
        </div>
    </div>
    </div>
    </div>
    </div>
    <?php get_footer(); ?>

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tag sites don′t appear’ is closed to new replies.