Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. woocommerce_wp_select(
  2. array(
  3. 'id' => '_type',
  4. 'label' => __( 'Type', 'woocommerce' ),
  5. 'desc_tip' => 'true',
  6. 'description' => __( 'What type of product is this? If possible, try to be more specific then just "book".', 'woocommerce' ),
  7. 'options' => array(
  8. 'one' => __( 'Book', 'woocommerce' ),
  9. 'two' => __( 'Teacher Guide', 'woocommerce' ),
  10. 'three' => __( 'Disciple Guide', 'woocommerce' ),
  11. 'four' => __( 'Teaching Pictures', 'woocommerce' ),
  12. 'five' => __( 'Bible Cards', 'woocommerce' ),
  13. 'six' => __( 'DVD', 'woocommerce' ),
  14. 'seven' => __( 'Other', 'woocommerce' )
  15. )
  16. )
  17. );
  18.  
  19. $type_value = get_post_meta( get_the_ID(), '_type', true );
  20. echo $type_value
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement