Support

Account

Home Forums Front-end Issues If this ACF field is True, then show 5 posts Reply To: If this ACF field is True, then show 5 posts

  • That should only give you 1 post?

    You can also do this:

    
    
    $args = array(
    	'numberposts' => 5,
    	'meta_key' => 'hp_slider',
    	'meta_compare' => '=',
    	'meta_value' => "1"
    );