当前位置: 首页 > 知识库问答 >
问题:

分析错误:语法错误,意外的'endif'(T_endif)[重复]

通骁
2023-03-14

已解决:短开标签已关闭,这就是问题所在。现在打开它,一切都正常了!

我现在正在制作一个主题,这是真的。我不明白为什么代码不起作用。我读过一些类似的话题,但它们无助于解决我的问题:

分析错误:语法错误,C:\xampp\htdocs\wp\wp content\themes\boxtruyen\single ngan中出现意外的“endif”(T_endif)。php在线105

请帮助,我无法找出错误!

<?php get_header(); ?>
    <?php if(have_posts()):?>
    <?php while (have_posts()):?>
    <?php the_post(); tw_views($ID_parent); ?>
    <input id="id_post" type="hidden" value="<?=$ID_parent?>">
    <div class="container" id="truyen">
        <div class="col-xs-12 col-sm-12 col-md-9 col-truyen-main">
            <div class="row">
                <div class="col-xs-12 col-info-desc" itemscope itemtype="http://schema.org/Book">
                    <div class="title-list">
                        <h2><span class="glyphicon glyphicon-info-sign"></span> <?the_title()?></h2>
                    </div>
                    <div class="col-xs-12">
                        <style>
                            .fix_color {
                                color: #C1377F;
                            }
                            .fix_color a {
                                color: #C1377F;
                            }
                        </style>
                        Đăng bởi <span class="fix_color"><?the_author()?></span>, lúc <span class="fix_color"><?the_time()?></span>, tại <span class="fix_color"><?the_category(', ')?></span>
                        <br/> Đọc:
                        <?php tw_views(get_the_ID());?>
                        <?php echo tw_get_views(get_the_ID())?>
                        <br/>
                        <br/>
                        <img class="image_ngan" src="<?=tw_get_thumbnail()?>" alt="<?the_title()?>" itemprop="image" />
                        <?php the_content()?>
                    </div>
                </div>
            </div>
            <div class="row text-center">
                <div class="hidden-xs hidden-sm hidden-md">
                    <div class="ads-780-90">
                        <?php dynamic_sidebar( 'qc-780x90');?>
                    </div>
                </div>
                <div class="hidden-lg">
                    <div class="ads-320-100">
                        <?php dynamic_sidebar( 'qc-320x100');?>
                    </div>
                </div>
            </div>
            <div class="row visible-md visible-lg">
                <div class="col-xs-12 comment-box">
                    <div class="title-list">
                        <h2><span class="glyphicon glyphicon-comment"></span> Bình luận</h2>
                    </div>
                    <div class="row">
                        <div class="fb-comments" data-href="<?the_permalink()?>" data-width="100%" data-numposts="5" data-colorscheme="light"></div>
                    </div>
                </div>
                <div class="col-xs-12 comment-box">
                    <div class="title-list">
                        <h2><span class="glyphicon glyphicon-list"></span> Cùng Chuyên Mục</h2>
                    </div>
                    <div class="row cungchuyenmuc">
                        <style>
                            .cungchuyenmuc li {
                                list-style: none;
                                width: 20%;
                                padding: 15px;
                            }
                        </style>
                        <?php $args=array( 'post_type'=> array('ngan'), 'post_status' => 'publish', 'posts_per_page' => $related_number, 'post__not_in' => array($ID_parent), 'orderby' => 'RAND' ); $list = new wp_query($args); ?>
                        <?php while($list->have_posts()):?>
                        <?php $list->the_post()?>
                        <li class="col-md-4 col-sm-6 col-xs-12">
                            <a href="<?the_permalink()?>">
                                <img style="max-width:100%;width:100%;max-height: 160px" src="<?=tw_get_thumbnail()?>" alt="<?the_title()?>"/><br/>
                                <h3 style="margin:8px 0px;text-shadow:0px 0px 1px #bbb"><?the_title()?></h3>
                            </a>
                        </li>
                        <?endwhile;?>
                    </div>
                </div>
            </div>
        </div>
        <div class="hidden-xs hidden-sm col-md-3 text-center col-truyen-side">
            <div class="ads-300-250"></div>
            <div class="list list-truyen col-xs-12">
                <div class="title-list">
                    <h4><span class="glyphicon glyphicon-list"></span> Truyện đang hot</h4>
                </div>
                <?php $args=array( 'post_type'=> 'post', 'post_status' => 'publish', 'posts_per_page' => $so_truyen_dang_hot, 'post__not_in' => array($ID_parent), 'orderby' => 'meta_value_num', 'meta_key' => 'tw_views_post', 'ignore_sticky_posts' => -1, 'order' => 'DESC' ); $list = new wp_query($args); ?>
                <?while($list->have_posts()):?>
                    <?$list->the_post();?>
                        <div class="row">
                            <div class="col-xs-12">
                                <span class="glyphicon glyphicon-chevron-right"></span>
                                <a href="<?the_permalink()?>" title="<?the_title()?>">
                                    <?the_title()?>
                                </a>
                            </div>
                        </div>
                        <?endwhile;?>
            </div>
            <div class="ads-300-600">
                <?php dynamic_sidebar( 'qc-300x600'); ?>
            </div>
        </div>
    </div>
    <?php endwhile; ?>
    <?php endif; ?>
    </div>
    <?php get_footer(); ?>

共有1个答案

洪弘壮
2023-03-14

不要使用php短标记,如

 类似资料:
  • 我发现php endif出现错误,找不到错误。这里我给出了我的代码。请帮我修一下

  • 这段代码用于显示相关文章,并驻留在我的includes文件夹中。 我最近从Mac上的本地开发环境(使用MAMP)切换到使用Windows和WAMP。 突然,这个错误发生在这段代码中。它不会发生在我的本地Mac环境中,也不会在现场测试时发生。 分析错误:语法错误,意外的“endif”(T_endif) 该错误特别指向倒数第二个。如果我删除它,将抛出相同的错误,指向代码中的最后一个。 有什么想法吗?我

  • 我有一个视图,我想显示数据库中的记录 ID 但他告诉我这个错误: 6361DDA302A0F162671EE5B36A4BE93第26行中的FatalErrorException:语法错误,意外的“endif”(T_endif) 欢迎刀身php: CreatesController:

  • 我使用过谷歌定制搜索引擎,并使用了他们在我的网站上提供的代码。 我有这个问题在(search.php),我不能放置 如何在搜索中添加该endif。php文件?

  • 我试图用以下方式简写Laravel blade文件中HTML标记内的if语句: 但是它得到了这个错误。我研究了类似的问题并尝试了解决方案,但仍然得到了同样的错误。有什么建议吗?提前感谢。 编辑:复选框组件

  • 谢谢你修复了功能问题,网站仍然很糟糕,尽管尝试用psp pad和altova+dw调试,但没有出现,但至少错误消失了。谢谢你给我带来了麻烦:-) ============================= 嗨,我有一个WordPress网站,它给了我这个错误: 解析错误:语法错误,在/home/content/58/5025958/html/wordpress/wp-content/themes/