Support

Account

Home Forums ACF PRO Hide post with true/flase Reply To: Hide post with true/flase

  • Hi @beeblu

    Could you please try this code:

    $args = array(
        'post_type'			=> 'post',
        'posts_per_page'	=> -1,
        'meta_key'			=> 'hideme',
        'meta_value'		=> '1',
    );

    I hope this helps.