Code
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
<h1> | |
<?php if (get_post_meta($post->ID, "h1", true)) : ?> | |
<?php $key="h1"; echo get_post_meta($post->ID, $key, true); ?> | |
<?php else : ?> | |
<?php the_title(); ?> | |
<?php endif; ?> | |
</h1> | |
/*カスタムフィールドの名前はh1とする*/ |
Note
Description | 条件分岐を使用。カスタムフィールドでh1を変更、入力が無いときはタイトルがh1になる |
---|---|
WordPress Ver. | 3.3.1 |
Via | – |