这些圈子一直出现在在线检查员中?

时间:2017-05-02 10:53:46

标签: html css wordpress

每次检查我的代码时,都会出现一个圆圈。有谁知道这是什么?

Snippet of HTML code in inspector

编辑1: 谢谢Sam我现在知道它们是文本节点。我在识别代码中的位置时遇到了一些麻烦。如果有人能够发现它们并将它们指向我,那将非常感激。

<?php get_template_part( 'parts/shared/header' ); ?>
    <?php 
        if(have_posts()) : ?>

        <div id="main-content">

            <div id="inside">

                <div class="content">

                    <div class="container">

                            <div class="padding_30">

                                <h1 class="page_header_blog">Blog</h1><br>

                                    <div class="blog_wrapper">

                                        <?php while(have_posts()) : the_post(); ?>
                                        <div class='post'>
                                            <div class='thumbnail'>
                                                <?php the_post_thumbnail(); ?>
                                                <?php echo get_avatar( get_the_author_meta( 'ID' ) , 32 ); ?>
                                            </div>
                                            <h2 class='each_blog_info' id='post-<?php the_ID(); ?>'></h2>
                                            <div class='blog_info'>
                                                <small><i class='fa fa-calendar-o' aria-hidden='true'></i>
                                                <?php the_time('F jS, Y') ?>&nbsp;&#10072;&nbsp;
                                                <i class='fa fa-user' aria-hidden='true'></i>
                                                <?php the_author() ?>&nbsp;&#10072;&nbsp;                                       
                                                <?php the_category( ', ' ); ?>
                                                </small>
                                            </div>
                                            <h2 class='blog_title_link'><a href='<?php the_permalink() ?>' rel='bookmark' title='Permanent Link to <?php the_title_attribute(); ?>'>
                                            <?php the_title(); ?></a></h2>
                                            <div class='excerpt'>
                                                <?php the_excerpt(); ?>
                                            </div>
                                        </div>                                                                  
                                        <?php endwhile; ?>                                      



        <?php endif;?>
                                    <div class="text-center"><?php

                                    the_posts_pagination( array(
                                    'prev_text'          => __( 'Previous page', 'spafix' ),
                                    'next_text'          => __( 'Next page', 'spafix' ),
                                    'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'spafix' ) . ' </span>',
                                    ) );


                                    ?></div>
                                    </div>
                            </div>

                    </div>

                </div>

            </div>

        </div>

<?php get_template_part( 'parts/shared/footer' ); ?>

这是我的index.php页面中的代码,其中文本节点正在检查器中。它们出现在循环之后的div类&#39; post&#39;。

2 个答案:

答案 0 :(得分:0)

这是“文本节点”,它们由不准确的PHP生成并包含“”。

答案 1 :(得分:0)

这些是由于空格...通常当两个或多个节点内联块属性汇集在一起​​时