app/template/mizunasu/Block/wp_news.twig line 1

Open in your IDE?
  1. <ul id="update"></ul>
  2. {% set Posts =  wp_posts() %}
  3. <h2 class="ttl mincho">新着情報</h2>
  4. {% if Posts is not null %}
  5.   {% set cnt="1" %}          
  6.     <div>
  7.     {% for Post in Posts %}
  8.     {% if cnt < 5 %}
  9.   
  10.             <div>
  11.               <small>{{ Post.date|date("Y/m/d") }}</small><div class="h3"><a href="{{ Post.link }}" role="button" target="_blank" rel="noopener">{{ Post.title.rendered }}</a><hr></div>
  12.             </div>
  13.        
  14.                             {% set cnt = cnt +1 %}
  15.                 {% endif %}
  16.     {% endfor %}
  17.     </div>
  18. {% endif %}