Created
March 1, 2016 05:34
-
-
Save kachi/1752836d249e45a32642 to your computer and use it in GitHub Desktop.
WordPressで投稿タイトル画からの場合の処理
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 $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