Try this one
<?php
$date_today = time();
$args = array(
'post_type' => 'birthday',
'posts_per_page' => 1,
'meta_query' => array(
'relation' => 'AND',
array(
'key' => 'field_position',
'value' => 'Teacher'
),
array(
'key' => 'field_dob',
'value' => $date_today,
'compare' => '=',
)
)
);
$the_query = new WP_Query($args);
if($the_query->have_posts()) : while($the_query->have_posts()): $the_query->the_post();
the_title();
endwhile;
endif;
?>
Related Posts:
- Meta query with string starting like pattern
- compare meta_query in get_posts arguments
- how to show posts that are missing a meta_value
- Changing the meta_query of the main query based on custom query_vars and using pre_get_posts
- WP_Query using meta_query with relation OR and orderby meta_value doesn’t work
- querying with custom meta field with meta_query
- Order by two meta keys
- multiple meta key but get server load is very high
- A WP_Query that will look for posts after 2 weeks ago OR with a certain meta value
- Order by meta_value_num DESC and meta_value ASC on WP 4.0
- Wp_query order by multiple custom fields?
- WordPress altering my custom query, How to fix it?
- Order by meta_key in custom post type doesn’t affect the query
- How to create/modfiy WP_Query to search in post title OR custom field?
- Use meta_query to display events by date in custom field
- How to show recent and upcoming birthdays using meta_query
- Multiple meta queries but arrange by specific meta value order
- Order Posts by meta value AND published date
- Using WP_Query and WP_Meta_Query Outside of WordPress
- What format does the meta_query TIME type require?
- If two first numbers exist in wp_meta_query value
- WP_Query on custom field and order results
- pre_get_posts order by not working
- WP_Query filter and order by meta ordering by wrong joined table
- Tax query clause inside a meta query clause?
- Optional Meta Query
- How do I make a meta_query OR relation work? [closed]
- meta_query in WP_Query value is not accepting array
- Meta_query on same meta key, with diffrenct values
- Can we return all category (not post) with Custom Query Filter? [closed]
- Extend product search with meta in WooCommerce
- how to make members list directory through wordpress post custom meta key.
- Changing sort order for presentation by Jetpack infinite scroll
- get posts by meta_key from inside key of post meta
- Help optimizing slow WP_Query with meta_query
- meta_value_num not ordering all items
- Meta Queries – should nesting work after WP 4.1?
- 2 weeks ago from meta query meta value
- WP_Query with meta_query dosen’t return results
- meta_compare not comparing whole integer
- meta queries do ‘either/or’ checks
- How to set up hierarchical relationships without using plugins / meta query
- WP Query ordering on a meta field for posts with a date in the future not ordering by datetime
- Selecting posts with a given meta value for a meta key
- Meta query compare for ID’s greater than specific ID
- Get every post with value in meta key
- get_page meta query not working, maybe a bug?
- Is it possible to add relation between meta_query and tax_query?
- Query by date from custom field
- Is it possible to retrieve posts depending on meta_key LIKE condition? [duplicate]
- Show single posts date, in a page of posts
- Comparing 2 Decimal Numbers from custom fields and displaying posts
- WP_Query Class custom field parameters
- Sort posts using multiple custom fields and menu_order in single query?
- meta_query where the meta value is not the post title
- Order WP_Query by meta_key priority when ‘OR’ relation used for multiple meta values
- Order (by ASC) posts with meta_key so posts without values are last
- Search filter between promo and exact price
- Woocommerce Get Orders By Meta Value
- meta_query is overriding default search
- WordPress Meta Query Null Values Order
- WP_Query multiple value not working
- show most viewed post
- WP_User_Query Orderby Not Working
- Why can my filter query SOME metadata but not other metadata?
- Getting posts by custom field value
- Unusual high query of user meta data
- WordPress Query optimaization for slow query
- wordpress multiple meta value query is not working
- Strange results from WP_Query
- Pre get posts sort by meta key returns no results if meta key does not exist
- meta_query with relation = AND not working as expected when combining EQUALS with NOT EQUALS
- WP Query for Multiple Post Types
- Meta query doesn’t remove placeholder escape before query
- Order Posts By Custom Field That is an array of objects
- WP Query Meta Query
- Query custom meta value – post view and date meta
- What is the best way to reset a search on a meta_key / meta_value?
- Slow query when selecting with large meta query or post__in
- How can I modify standard search query to include also ACF custom fields values?
- Custom WP_query and integrating into theme file
- WP_Query – show posts where meta value and user_email match
- WP Meta Query at depth 2
- Best way to Order Post in Home without a plugin
- WP_Query using meta_query with LIKE doesn’t return what it should
- Is there any difference between below WP_Query code snippets?
- Return a single custom post from multiple meta queries
- Sorting: custom query with orderby meta_value_num THEN by title
- query post based on comparison
- Including ‘cat’ => $cat breaks meta_query
- meta_query compare not doing what I want it to do
- Query string form $_GET[‘value’] is not working as meta value in wp_query
- Can’t figure out query logic
- WP_Query orderby not working on custom post_type
- 294 Queries on Mainpage of WordPress
- How to get all post_id and meta_value using meta_key in wp_postmeta table
- WP Query – Show custom posts only if user contain some user meta
- How do I subquery with custom meta fields?
- Showing Counts on Comment List with Custom Query
- How to get products with the same custom attribute like ean code