Title: Not pulling values
Last modified: August 20, 2016

---

# Not pulling values

 *  [mtuttle](https://wordpress.org/support/users/mtuttle/)
 * (@mtuttle)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/not-pulling-values/)
 * Ok, I’m having some trouble calling the value of my fields to the front end. 
   Here’s my code:
 *     ```
       <?php $title = get_post_meta( get_the_ID(), 'rw_title', true ); ?>
   
             <li>
       				<div class="clearfix">
   
                 <div class="folio-desc">
       				<h3><?php the_title(); ?> | <?php echo $title; ?> </h3>
       ```
   
 * I tried reading through the tutorials with no luck. Can anyone tell me what I
   did wrong?
 * [http://wordpress.org/extend/plugins/meta-box/](http://wordpress.org/extend/plugins/meta-box/)

Viewing 1 replies (of 1 total)

 *  [SpiritOfTheWinds](https://wordpress.org/support/users/spiritofthewinds/)
 * (@spiritofthewinds)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/not-pulling-values/#post-3223627)
 * Use
 * `<?php $title = rwmb_meta('rw_title'); ?>`
 * It’s a method provided with the Meta-Box.
 * There are a 2nd parameter used for images/files/etc. and a third parameter to
   force the post/page ID. Both of them are optional and not needed for text fields.

Viewing 1 replies (of 1 total)

The topic ‘Not pulling values’ is closed to new replies.

 * ![](https://ps.w.org/meta-box/assets/icon-128x128.png?rev=1100915)
 * [Meta Box](https://wordpress.org/plugins/meta-box/)
 * [Support Threads](https://wordpress.org/support/plugin/meta-box/)
 * [Active Topics](https://wordpress.org/support/plugin/meta-box/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/meta-box/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/meta-box/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [SpiritOfTheWinds](https://wordpress.org/support/users/spiritofthewinds/)
 * Last activity: [13 years, 5 months ago](https://wordpress.org/support/topic/not-pulling-values/#post-3223627)
 * Status: not resolved