Skip to content

Instantly share code, notes, and snippets.

@rajendra89
Created June 1, 2017 05:52
Show Gist options
  • Save rajendra89/ccf239d2d6466424af2f5aa1be17bb71 to your computer and use it in GitHub Desktop.
Save rajendra89/ccf239d2d6466424af2f5aa1be17bb71 to your computer and use it in GitHub Desktop.
WordPress Custom Fields
<?php
$meta_value=get_post_meta($post->ID,'views',true);
//get_post_meta( int $post_id, string $key = '', bool $single = false ))
if(!empty($meta_value)){
echo $meta_value;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment