Created
May 7, 2014 13:09
-
-
Save foru17/40a402d98f999eb68c91 to your computer and use it in GitHub Desktop.
Wordrpess中自定义参数和处理空值
This file contains 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 | |
$guideWord=get_post_meta($post->ID, "guide_word_value", $single = true); | |
$buttonUrl=get_post_meta($post->ID, "custom_button_url_value", $single = true); | |
?> | |
<?php if (!empty ($guideWord)) {echo $guideWord ;} else {echo "If you like it, please rate us" ;} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment