Support

Account

Home Forums Front-end Issues Show custom fields, but hide empty and select fields Reply To: Show custom fields, but hide empty and select fields

  • Hi @webwebby

    You can hide the fields by matching against any of the $field parameters. For example, if you wanted to hide all image fields, you could do it like so:

    
    <?php 
    
    $fields = get_field_objects();
    
    if( $fields )
    {
    	foreach( $fields as $field )
    	{
    		if( $field['type'] == 'image' )
    		{
    			continue;
    		}
    		
    		echo "<p>{$field['label']}: {$field['value']}</p>";
    		
    	}
    }
     ?>