任何人都帮我从wp_post表中的自定义字段中检索值 我在wp-post表中添加了一个名为rating的字段.how从中检索值 临界
答案 0 :(得分:0)
使用
$meta_values = get_post_meta($post_id, $key, $single);
或
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;