Advertisement
srikat

Untitled

Jul 6th, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_shortcode( 'item_price', 'func_item_price' );
  2. /**
  3. * Register [item_price] shortcode to return the value of `item_price` custom field.
  4. *
  5. * @return int the item price.
  6. */
  7. function func_item_price() {
  8. $item_price = get_post_meta( get_the_ID(), 'item_price', true );
  9.  
  10. if ( $item_price ) {
  11. return $item_price;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement