Just add this before your code
$authors = array( 1, 2, 3 ); // privileged users array
$signed_in_user = wp_get_current_user(); // get current user
// check if singed in user is in authors array
if ( in_array( $signed_in_user->ID, $authors ) ) :
And then this after your code
<?php else : ?>
This message will be displayed if the signed in user is not in the authors array.
<?php endif; ?>
Related Posts:
- order by numeric value for meta value
- Wp get all the sub pages of the parent using wp query
- Usage of the new “posts_clauses” filter in WordPress 3.1?
- Changing the meta_query of the main query based on custom query_vars and using pre_get_posts
- How to uniquely identify queries?
- Get posts by meta data OR title
- WP_Query ordered by custom field that is a date string?
- How to make an activities stream mixing posts and comments?
- Duplicate Queries
- How to query for a week using key => value WP_Query argument notation?
- SQL query equivalent to WP User Query
- Highlighting Sub topic in a post?
- How to count post type that has a particular term?
- Foreach-generated custom tax queries, each with an ajax “Load more” button
- meta_query on a date range using an array of values
- WP_Query Performance Issues with meta_query
- WordPress custom archive page
- How to detect custom query inside `posts_where` hook?
- Is temporarily overwriting $wp_query a bad idea?
- Query Set Order By Author
- Retrieve or Query Pages by ID
- How to implement time filter to show random post 1 month for one category and 3 months for other categories
- How to output different posts per page?
- How to do a query on custom taxonomies that is uncategorised?
- Empty tax_query array returns an empty array
- How do I search inside specific taxonomies in WordPress
- Pass array of taxonomy terms to wp_query
- How to orderby meta_value_num with dollar ($) sign
- merge two query arguments into one WP_Query call
- Using WP_Query in “parse_query” or “pre_get_post” in Posts2Posts
- Query: offset post list, unless it’s a specific category
- How to reduce the number of queries?
- remove query arg from url after set query
- difference between like ‘%%%var%%’ and ‘%var%’
- List of the years with posts presented
- Query custom post type by custom taxonomy (category slug)
- Custom Query num_rows returns wrong amount
- Overwrite YoastSEO meta-tags with another page’s [closed]
- How to orderby multiple meta fields if some fields are empty
- Editing the default wordpress search
- How to duplicate 5 posts out of WP_Query results?
- Weird orderby => post__in issue
- Slow page loads due to WordPress Core Query
- Set global $wp_query/$post variable for dynamic page generation
- WP_query sorting can’t sort danish letters (æ, ø, å)
- Slow queries on a huge database
- WP_Query with ‘rand’, but equal number of posts from the taxonomy terms given
- Multisite pagination issue by multi query archive 404
- Query with relation and one without relation using multiple taxonomies?
- Meta Query relation “AND” then set array accordingly
- Sort WordPress Posts Meta value by Week not Day
- Is_single() conditional tag returns null in query
- 2 wordpress loops showing 1 post from same post type – how to avoid showing the same post?
- Query posts that contain video?
- Show a 404 error page if Public query variable’s value doesn’t exist?
- Set front_page programatically after user login via query, while leaving site option alone
- Query where ANDing slug values not working
- How to filter query loop block with a search string from the query parameters
- mysql query order by
- Notice thrown when creating numeric pagination on custom query
- How to SQL query posts IDs by categories AND authors?
- Query multiple post types, but different order for each
- Display posts ONLY from the current logged in user and current week/year/month Elementor posts
- setting offset to category number in archive page
- How to do WP_User_Query for Nested Array value Inside Nested Array field
- Query Posts | Combining multiple form inputs into query arguments to generate one filter result
- How to get_comments() ordered by date and parent?
- How to query 5 users in random who have published more than 10 posts
- WP Query. Ordering posts by another post types meta
- Slow wp_posts and wp_postmeta query using Advance Custom Fields
- How to show post title in content editor in backend?
- Adding Category in WP_Query Not Working
- Merge two queries and remove duplicate
- What is the best way to reset a search on a meta_key / meta_value?
- Using the same WP_Query for shop and widgets in WooCommerce shop
- How can I get all the posts that are related with a specific taxonomy term?
- Fetch only categorized posts
- Bring a post to the top of the query if it’s in a certain category?
- WP_Query with child element
- Custom pagination (Title, date and teaser)
- Using URL variables on a custom WP_Query
- Using WP_Query to re-query and sort results using a date?
- Pagination is not working on custom query inside a custom home page template
- Pagination in custom query in a category page
- Get a list of the last posts grouped by author and filtered by category
- When should you use WP_Query vs query_posts() vs get_posts()?
- How to query post ids liked by the Author
- Modify query after meta value
- Custom post types loop on a page template
- Showing posts from 4 categories along with all latest posts
- Pagination in WP query with transient API
- Parsing External Table Arguments
- difference between methods of query
- Query posts by meta value and sort by another meta key
- how to use transient method?
- Main loop querying current template’s info only in custom category archive pages, not my posts
- A Depth Like Parameter For “get_posts”
- Search query alteration not working for meta values
- Advanced Search – Is this possible?
- Use value from meta key array for use in WP_Query