Call Custom Field Values (WordPress)


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <?php $customField = get_post_custom_values("page_blurb");
  2. if (isset($customField[0])) {
  3. echo $customField[0];
  4. }
  5. ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.