Created
July 18, 2012 07:13
-
-
Save s-hiroshi/3134743 to your computer and use it in GitHub Desktop.
WordPress > snippets > category
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| * アイキャッチ付きアーカイブページの雛型 | |
| * ■ 詳細ページへのリンク処理 | |
| * Moreタグ | |
| * 有 - Moreタグの前までを表示 | |
| * - リンク「詳細はこちら」のリンクを表示 | |
| * - 見出し(h2)にパーマリンクを設定 | |
| * 無 - 全文を表示 | |
| * - リンク「詳細はこちら」のリンクは非表示 | |
| * - 見出し(h2)にパーマリンクを設定しない。 | |
| * ■ アイキャッチ(サムネイル)画像 | |
| * 有 - アイキャッチを表示 | |
| * 無 - 表示しない。 | |
| ?> | |
| <?php if(have_posts()):while(have_posts()):the_post() ?> | |
| <div class="post"> | |
| <?php if (false !== strpos($post->post_content, '<span id="more-995552950"></span>')) : ?> | |
| <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
| <?php else : ?> | |
| <h2><?php the_title(); ?></h2> | |
| <?php endif; ?> | |
| <?php if (has_post_thumbnail()) : ?> | |
| <p><?php the_post_thumbnail(); ?></p> | |
| <?php endif; ?> | |
| <p><?php the_content('詳細はこちら'); ?></p> | |
| </div><!-- /post --> | |
| <?php endwhile;endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment