• Hello,

    Can someone tell me what parameters need to be added to WP_query custom loop to be able to filter those results via WordPress Access Control plugin?

    For example in such loop:

    $args = array( 'post_type' => 'my_custom_post_type',
        'post_status'=>'publish',
        'posts_per_page' => 5,
        'meta_query' => array(
            array(
                'key' => '_pts_featured_post',
                'compare' => 'NOT EXISTS'
            )
        )
    );
    $loop = new WP_Query( $args );

    http://wordpress.org/plugins/wordpress-access-control/

The topic ‘Custom WP_query = no access filter’ is closed to new replies.