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>";
}
}
?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.