在wordpress中检索自定义字段值

时间:2011-08-25 14:06:40

标签: wordpress

任何人都帮我从wp_post表中的自定义字段中检索值 我在wp-post表中添加了一个名为rating的字段.how从中检索值 临界

1 个答案:

答案 0 :(得分:0)

使用

get_post_meta

$meta_values = get_post_meta($post_id, $key, $single);

get_post_custom

 get_post_custom($post_id);

根据你的评论:

修改

$args = array( 'post_type' => 'your_post_type', 'posts_per_page' => 10 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
    the_title();
    echo '<div class="entry-content">';
    the_content();
    echo '</div>';
endwhile;