get_post_meta with query_post function
-
Hello forums
How do you get the post meta using the query_post function
I have this:
query_posts('category_name=videos'); while (have_posts()) : the_post(); echo get_post_meta($post->ID, 'videoThumb', true); endwhile;Somehow it isn’t working
when I tried to echo $post->ID there is no value but when I echoed the_title() there is a value. I think the post id is NULL.
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘get_post_meta with query_post function’ is closed to new replies.