I have to create a search results page where I need to display pages, posts and PDF attachments for either pages or posts in three separate tabs.
I got the pages and posts part down but for some reason I cant nail searching the title of my PDFs in the Media Library via my search query. In other words, I put in a search item in my site's search box and I need it to display PDFs (media attachments in the Media Library) that have that term in the caption or description fields. I am trying not to use plugins like Relevanssi or Search everything, since I have less control over the styling of the results.
So far I have two options from other sources,neither of which yield the answer I want. You can try what I have so far at http://www.cardi.org and type anything into the search box and hit Enter.
OPTIONS
<?php while (have_posts()) : the_post(); ?>
<div class="story">
<?php $args = array(
'post_type' => 'attachment',
'post_parent' => $post->ID,
'post_mime_type' => 'application/pdf',
'post_status' => inherit,
'numberposts' => -1,);
$attachments = get_posts($args);
if ($attachments)
{
foreach ($attachments as $attachment)
{
the_attachment_link($attachment->ID, false, false, true);
}
}
?>
AND
<?php $args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID );
$attachments = get_posts($args);
if ($attachments)
{
foreach ( $attachments as $attachment )
{
echo apply_filters( 'the_title' , $attachment->post_title );
the_attachment_link( $attachment->ID , false );
}
}
?>