“Can WordPress & MySQL be used to show posts from a specific category?”
I have the following query that bring the posts that contain a specific word in the title SELECT posts_post.ID AS post_ID, posts_post.post_date AS post_post_date, CONCAT('<a href="',posts_post.guid,'">',posts_post.post_title,'</a>') AS post_title_with_link_to_post FROM wp_posts AS posts_post WHERE 1=1 AND posts_post.post_title LIKE '%HOTARAR%' AND posts_post.post_type…