Custom Post Type list
-
Hello
I’m trying to list data from values in a custom post type.
I can list all the titles for that post type perfectly fine, but unable to list the custom values for the post types.
Code:
$args = array( 'post_type' => 'shop_coupon', 'posts_per_page' => 100 ); $obituary_query = new WP_Query($args); while ($obituary_query->have_posts()) : $obituary_query->the_post(); echo '<p>'; echo '<strong>'; the_title(); echo '</strong>'; $amount = get_post_custom_values(get_the_ID(),'amount', true); echo '<br/>Discount: ' . $amount[0] . '%'; $usage = get_post_custom_values('usage'); echo '<br/>Usage: ' . $usage[0]; echo '</p>'; endwhile; wp_reset_postdata(); }
Any ideas?
[ No bumping please. ]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Custom Post Type list’ is closed to new replies.