1

基本上,这是我的 index.php 代码:

<?php 
    get_header();
?>      
        <!-- WRAPPER START -->
        <section id="wrapper">
            <!--  START DYNAMIC PART -->
            <?php 
                if(have_posts()):
                    while(have_posts()):
                        the_post();
            ?>
            <!-- MAIN CONTENT START-->
            <section id="main-content">

                <!-- SIDEBAR START -->
                <aside id="tab-lists">
                    <?php if(!dynamic_sidebar('telerik-sidebar')): ?>

                    <?php endif; ?>
                    <?php if(!dynamic_sidebar('telerik-sidebar2')): ?>
                    <?php endif; ?>
                </aside>    
                <!-- SIDEBAR END -->

                <!-- BIG POST START -->
                <div id="big-post">
                    <article>
                        <header>
                            <h2>
                                <?php the_title(); ?>
                            </h2>
                            <p class="post-info">
                                Posted by <?php the_author(); ?> in on <?php the_date('d-m-Y'); ?> | <a href="<?php the_permalink();?>"><?php comments_number( 'no comment', 'one comment', '% comments' ); ?></a>
                            </p>
                        </header>
                        <?php the_post_thumbnail(); ?>
                        <div class="post-text">
                            <?php the_content(); ?>     
                        </div>
                    </article>
                </div>
                <!-- BIG POST END -->
                <div id="com">
                    <?php 
                        comments_template('',true); 
                    ?>
                </div>
            </section>
            <!-- MAIN CONTENT END -->
            <?php 
                endwhile;
                endif;
            ?>
            <!-- END DYNAMIC PART -->
        </section>
        <!-- WRAPPER END -->
<?php 
    get_footer();
?>

它在我的本地主机上运行完美,但是当我将它上传到 wordpress 时,我得到了Notice: Theme without comments.php is deprecated since version 3.0 with no alternative available. Please include a comments.php template in your theme. in /f5/funkz/public/wp-includes/functions.php on line 2670- 错误,所以我做了一个 comments.php,并将只是我comments_template('',true);的放在那里(在 php 标签中)和他在 index.php 中的位置我放置comments_template();调用该文件,但后来我得到内存问题错误...我在一些地方可以通过增加它来解决php.ini,但我没有在我的服务器的文件夹中找到它:(。如果你有解决方案谢谢你提前。

4

2 回答 2

1

只需使用

<?php comments_template( '/templates/comments.php', true );     ?>

并将comments.php 移入目录模板。

于 2015-10-23T09:05:56.340 回答
0

如果您使用 2012comments.php模板,请确保它不是从行中查看:

@package Wordpress, @subpackage TwentyTwelve @since v1.0.  
于 2013-06-21T23:43:58.637 回答