How to search pdf attachment?
I would recommend you first to search attachments by your search term. For example: $attachments_query = new WP_Query( array( ‘s’ => ‘Your search query’, // <– Your search term ‘post_type’ => ‘attachment’, ‘post_mime_type’ => ‘application/pdf’, ‘post_status’ => ‘inherit’, ‘posts_per_page’ => -1, ) ); With this query, you will get all PDF files that fit your … Read more