2

我现在正在开发一个 Wordpress 模板。我有一个静态索引页面。对于我的博客文章,我使用了一个名为Blog. 但是当我在这个模板下创建一个页面Blog并尝试查看该页面时;它不显示博客页面,而是显示404.php

我正在使用这些文件:

index.php //static index page
blog.php //blog page under Blog template
404.php

这是我的网站http://ratcat.bugs3.com/samata/ 这是无法正常工作的博客页面http://ratcat.bugs3.com/samata/blog-6

如需更多帮助,这里是我的 blog.php 主要代码段:

            <div class="single_post">
                <?php
                // The Query
                $page = (get_query_var('paged')) ? get_query_var('paged') : 1;
                query_posts("paged=$page");
                // The Loop
                if(have_posts()) :
                while ( have_posts() ) : the_post();
                ?>
                <table>
                    <tr>
                        <td class="left_date">

                                <h1><?php the_time('d') ?></h1>
                                <p><?php the_time('M') ?></p>
                                <span class="year"><p><?php the_time('Y') ?></p></span>

                        </td>
                        <td>
                            <a href="<?php the_permalink(); ?>" ><h2><?php the_title(); ?></h2></a>
                            <div class="author_tag">
                                <span class="author">By: <?php the_author_posts_link(); ?></span>
                                <span class="tag"><?php the_tags(); ?></span>
                            </div>
                            <div class="post">
                                <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('post-image', array('class' => 'post-thumb')); ?></a>
                                <p><?php the_excerpt(); ?></p>
                                <div class="read_comment">
                                    <a href="<?php the_permalink(); ?>" title="Full post"><span class="read">Read more</span></a>
                                    <span class="comment"><?php comments_popup_link('No Comment', '1 Comment', '% Comments'); ?></span>
                                </div>
                            </div>
                        </td>
                    </tr>
                </table>
                <div class="clear"></div>
                <div class="gap"></div>
                <?php
                    endwhile; ?>
                    <table class="nav_post">
                        <tr>
                            <td><div class="nav-previous"><?php next_posts_link( __( '<span class="meta-nav">&laquo;</span> Previous posts') ); ?></div></td>
                            <td><div class="nav-next"><?php previous_posts_link( __( 'Next posts <span class="meta-nav">&raquo;</span>') ); ?></div></td>
                        </tr>
                    </table>
                    <?php
                    endif;
                    // Reset Query
                    wp_reset_query();
                ?>
            </div>
4

2 回答 2

1

阅读本文,我认为您的问题是您应该调用模板 page-blog.php 以使其自动用作具有“博客”名称(可能是 slug?)的页面的模板。

请参阅此处的法典;

http://codex.wordpress.org/Pages#Page_Templates

WordPress 模板层次结构还可以自动识别特定的页面或帖子,而无需将它们分配给特定的页面模板文件。如果模板文件名中带有 ID 或 slug 的 Page 是用户创建的,则会自动使用相应的 Page 模板文件。

页面-{id}.php

页面-{slug}.php

于 2013-04-05T11:13:28.693 回答
1

尝试一些事情,比如在你的 blog.php 上放一个模板代码,比如粘贴代码

<?php
/*
 * Template name: blog Template
 */
?>

之后,在您的管理员中,您的博客页面编辑您的模板,您可以在编辑博客页面时在下拉列表中看到博客模板。希望这对你有用。

于 2013-04-05T11:45:42.847 回答