最新的WordPress首页文章(HTML)

时间:2017-08-29 00:38:40

标签: php wordpress

我试图在我的网站的/ blog目录中添加3篇关于我的HTML / CSS首页的博客文章。到目前为止它有效,但我遇到了问题;每当文章的摘录限制很低时,它就不会显示“继续阅读”。我想知道我是否可以通过首页上的PHP以某种方式更改摘录限制。

这是当前代码PHP:

  <div class="ro-section ro-padding-top">
    <h3 class="ro-hr-heading">Our Latest Blog Articles</h3>
    <div class="container">
        <?php
          include('blog/wp-load.php');
          $args = array('showposts' => 6);
          $the_query = new WP_Query( $args );

          echo '<div class="row">';

            if( $the_query->have_posts() ): 
            while ( $the_query->have_posts()) : $the_query->the_post(); 

              echo '<div class="col-md-4">
              <h4 class="ro-service-item-4">'.get_the_title().'</h4>
              <a href="'.get_the_permalink().'">'.get_the_post_thumbnail().'</a>
              '.get_the_excerpt($limit).'</p></div>';

            endwhile; 
            endif; 

          echo '</div>';

          wp_reset_query(); 
        ?>
    </div>
  </div>

1 个答案:

答案 0 :(得分:1)

我在谷歌搜索和在线阅读后想出来了。首先,您需要创建自定义函数:

hostname = ...;
environment = ...;
authorize_uri = hostname & "/" & getOAuthUrlFromEnvName(environment) & "/oauth/authorize?"

我还必须更改&#39; .get_the_excerpt($ limit)。&#39;进入&#39; .get_excerpt()。&#39;因为自定义函数已重命名。

以下是所有代码:

StartLogin = (resourceUrl, state, display) =>
    let
        authorizeUrl = authorize_uri & "?" & Uri.BuildQueryString([
        ...