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
<?php $css = get_post_meta($post->ID, 'foo', true); if ($foo) { ?> | |
カスタムフィールドが使われているならここを表示: <?php echo $foo; ?> | |
<?php } else { ?> | |
使われていないならこっちが表示される | |
<?php } ?> | |
/*上記はfooという名でカスタムフィールドが登録されている例*/ |
Note
Description | カスタムフィールドが登録されている記事かどうかを判別して分岐させる |
---|---|
WordPress Ver. | 3.3.1 |
Via | – |