Category: Query
-
How To Restrict WordPress Search to Titles Only
In this blog we will learn about how to restrict WordPress to search by title only. We can hook into WordPress using `posts_where` hook and then modify the query to search by post title using `post_title LIKE` You can watch the above video for the demo.
-
WP_Query To Get Custom Posts Type Posts By A Taxonomy Term With Fallback Posts
This blog will demonstrate how to make a WP_Query to get 5 posts of a custom post type by a taxonomy term and if we don’t have enough, then we fill the remaining slot using default posts as a fallback. That’s all folks!