Quantcast
Channel: omnioo lab. record » PHP/MySQL
Viewing all articles
Browse latest Browse all 59

WordPressループ

$
0
0

最も基本的なWordpressループです。至るところで使います。

<div id=”top_entries_list”>
<?php if (have_posts()): ?>
<h3><a href=”#”>SlapstikrのBlog</a></h3>
<div class=”listing”>
<ul>
<?php while(have_posts()) : the_post(); ?>
<li><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
</div>
<?php else : ?>
<li>投稿がありません。</li>
<?php endif; ?>
</div>

テンプレートタグというものじゃなくて殆どPHPの関数なわけなのですが、でくくるというのも非常に面倒くさい。MTも似たようなものですが、Wordpressは速いのがいいですね。


Viewing all articles
Browse latest Browse all 59

Trending Articles