WordPress中的高级自定义字段查询

时间:2017-08-26 06:36:33

标签: wordpress advanced-custom-fields

我正在尝试列出所有帖子,而高级自定义字段值 ispremium =>是并在我的WordPress网站上发布 issticky 。我的页面中有以下代码。它列出了所有帖子,但没有检查 ispremium =>是 issticky 帖子,而不是显示所有帖子。

我的代码有什么问题?

       <?php 
               // args
                $args = array(
                'numberposts'   => -1,
                'post_type'     => 'post',
                'meta_key'      => 'ispremium',
                'meta_value'    => 'yes'

            );



            // query
            $the_query = new WP_Query( $args and is_sticky());

        ?>
        <?php if($the_query->have_posts() ): ?>
            <ul>
                <?php while( $the_query->have_posts() ) : $the_query->the_post(); ?>
                    <li>
                        <a href="<?php the_permalink(); ?>">
                        <img src="<?php the_field('event_thumbnail'); ?>" />
                        <?php the_title(); ?>
                        </a>
                    </li>
                <?php endwhile; ?>
            </ul>
        <?php endif; ?>

    <?php wp_reset_query();  // Restore global post data stomped by the_post(). ?>

1 个答案:

答案 0 :(得分:1)

试试这个:

$args = array(
        'posts_per_page'      => -1,
        'post__in'            => get_option( 'sticky_posts' ),
        'post_type'           => 'post',
        'meta_key'            => 'ispremium',
        'meta_value'          => 'yes',
        'ignore_sticky_posts' => 1,

);  
$the_query = new WP_Query( $args );