Skip to content

Instantly share code, notes, and snippets.

@foru17
Created May 7, 2014 13:09
Show Gist options
  • Save foru17/40a402d98f999eb68c91 to your computer and use it in GitHub Desktop.
Save foru17/40a402d98f999eb68c91 to your computer and use it in GitHub Desktop.
Wordrpess中自定义参数和处理空值
<?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