使用自定义字段的值自定义post循环和'posts_per_page'

时间:2014-02-27 16:48:34

标签: wordpress-theming wordpress

目前,我有一个自定义循环, posts_per_page 设置为5.但是,我希望 posts_per_page 基于特定自定义字段的值'页面'。

这可能吗?

由于

1 个答案:

答案 0 :(得分:1)

$post_id = get_the_ID();
    $key = 'custom_field_count';
    $post_count = get_post_meta($post_id, $key, true);
    $args = array(
        'posts_per_page' => $post_count,
    );
    query_posts($args);