Skip to content

Instantly share code, notes, and snippets.

@kachi
Created March 1, 2016 05:34
Show Gist options
  • Save kachi/1752836d249e45a32642 to your computer and use it in GitHub Desktop.
Save kachi/1752836d249e45a32642 to your computer and use it in GitHub Desktop.
WordPressで投稿タイトル画からの場合の処理
<?php $title = get_the_title(); if (strlen($title) == 0)//タイトルが未入力かをチェック { ?>
<h2>タイトルがない場合の処理</h2>
<?php } else { ?>
<!--ある場合は普通に表示する-->
<h2><?php the_title(); ?></h2>
<?php } ?>
-----------------------------------------------------------
例)タイトルがない場合は日付とカテゴリ名をタイトルにする
<?php $title = get_the_title(); if (strlen($title) == 0)//タイトルが未入力かをチェック { ?>
<h2><?php the_time(__('Y.m.d')) ?> <?php $c = get_the_category(); echo '<span>' . $c[0]->name . '</span>'; ?></h2>
<?php } else { ?>
<h2><?php the_title(); ?></h2>
<?php } ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment