Query based on custom field

84 Views Asked by At

I have made custom fields using advanced custom field plugin. It has a field name school which includes choices such as arts,education,engineering. Now my problem is how can i query only those post who field is arts using wpdb. sincerely i don't know wpdb works. custom fields. Any help will be appreciated :)

2

There are 2 best solutions below

0
On BEST ANSWER

Try using WP_Query over a direct mysql query. https://codex.wordpress.org/Class_Reference/WP_Query

In your WP_Query arguments include the 'meta_key' and 'meta_value' parameters.

$args = array(
    'meta_key'      => 'school',
    'meta_value'    => 'arts'
);
2
On

It's a Wordpress Global Database Access Variable, if you want to executes database related opration than you must use $wpdb

more info : https://codex.wordpress.org/Class_Reference/wpdb