Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 );
        }
    }
?>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.