WordPress博客文章布局彼此不同

时间:2018-11-09 10:06:29

标签: php css wordpress post layout

我偶然发现了一个问题,当我未登录网站时,这两个版本的Blog彼此不同。基本上,我是通过WP建立的。一旦我签署了Blog Post的布局,就应该按照预期的方式进行设计;完全布局美观且流线型(图1)。 Blog Post Example 1 但是,我之后检查了该站点,发现布局有些错误地移位了,并且博客文本已混合到页脚中,使事情看起来不理想(图2)。 Blog Post Example 2 就删除缓存和网页而言,我已经完成了所有工作,只是为了刷新整个网站。

我一次又一次地对代码进行了两次/三次检查,但仍然没有雪茄。

        string jsonData = "";
        using (StreamReader reader = new StreamReader("big.json"))
        {
            jsonData = reader.ReadToEnd();
            reader.Close();
        }
        JObject o = JObject.Parse(jsonData);
        var results = o["datatable"].Where(x => (bool)x["filter"]).ToArray();

请帮助!!!

1 个答案:

答案 0 :(得分:0)

您在代码中犯了一些错误。 应该在if语句('post'=== get_post_type())之前关闭标题 您的代码应如下所示:

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    <header class="entry-header">
        <?php
        if ( is_singular() ) :
            the_title( '<h1 class="entry-title">', '</h1>' );
        else :
            the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
        endif; 
        ?>

    </header><!-- .entry-header -->

    <?php if ( 'post' === get_post_type() ) :

          if ( has_post_thumbnail() ) { 

                the_post_thumbnail( array( 750, 750 ));

                } 
     endif; ?>

<p class="article_date"><?php the_date(); ?></p>
                  <div class="blogTextExc">
                    <?php the_content(); ?>
                      Hello
                  </div>

        <?php edit_post_link( 'Edit', '<div>', '</div>'  ); ?>

</article><!-- #post-<?php the_ID(); ?> -->