Home › Forums › ACF PRO › Query pages for use of a flexible content layout › Reply To: Query pages for use of a flexible content layout
In the DB the flex field is stored as an array of layout names.
$flex_field_name = 'name of your flex field here';
$layout_name = "name of your layout here";
$args = array(
'post_type' => 'page',
'posts_per_page' => -1,
'meta_query' => array(
array(
'key' => flex_field_name,
'value' => '"'.$layout_name.'"'
'compare' => 'LIKE'
)
}
);
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.