Answer the question
In order to leave comments, you need to log in
Binding record types?
There are 2 types of records, projects and industries, I use the acf plugin when adding a project, there is a choice to which industry it belongs to, respectively, there is (id) records, the question is * how can I display projects related to the industry in industries
Answer the question
In order to leave comments, you need to log in
WP_Query
// как-то так
$q= new WP_Query(array(
'category_name' => 'projects',
'meta_query' => array(
array(
'key' => 'industry',
'value' => '1', // id текущей отрасли
'compare' => '='
)
),
));
// тут пошли циклом
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question