Why isn't get_post_meta working?

后端 未结 9 1086
予麋鹿
予麋鹿 2020-12-12 05:12

Simple Wordpress problem - get_post_meta is not retrieving custom field values. Here\'s the code that is pulling from the custom fields:



        
9条回答
  •  一个人的身影
    2020-12-12 06:13

    You could also use get_post_meta( $loop->post->ID, 'yourkey', true ); if you are using $loop = new WP_Query( $args ); or something similar.

提交回复
热议问题