MENU

is_home()

メインブログのージが表示されている場合です。これは、サイトコンテンツのブログの時間を基づいて表示しているページです。もしフロントページ(下記参照)の静的ページを設定している場合は、管理画面>設定>表示設定内の”フロントページの表示”として設定しているページがTrueの場合のみです。

原文(翻訳元)When the main blog page is being displayed. This is the page which is showing the time based blog content of your site, so if you’ve set a static Page for the Front Page (see below), then this will only be true on the Page which you set as the “Posts page” in Administration > Settings > Reading.

目次

作業例

その他の例では、ループに条件タグを使用する方法です。これがシングル投稿、カテゴリー、ホームとページで表示する固定のアーカイブの時、index.php内で、コンテンツあるいは抜粋を表示する選択をします。

原文(翻訳元)Other example how to use Conditional Tags into loop. choose display content or excerpt in the index.php, when this is unique archive for display single post, categories, home and page.

[php]if (is_home() || is_single()) {
the_content();
}
else {
the_excerpt();
}[/php]

ホームページではない場所に、コードまたは要素を表示する必要がある場合です。

原文(翻訳元)When you need display a code or element, in a place that is not the home page.

[php]<?php if (!is_home()) {?>

Insert your code…

<?php }?>
[/php]

よかったらシェアしてね!
  • URLをコピーしました!

この記事を書いた人

WordPress Love! 休日はほぼWordPress仲間と一緒に勉強会や写真を撮りに行っています。現在育児中のため、オフが多いです(>△<<<)

コメント

コメントする

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

目次