Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to display automatically a post attachment (PDF) depending on the language of my blog (french and english).

When the post is displaying in french version, I would like display the french PDF, and when the post is displaying in english, the english one.

I use the qtranslate pluggin and I though to use the caption of the attachment ("fr" or "en") to create a sort of conditional tag.

I tried the code below but it does'nt work. Do you have any idea to help me?

Many thanks in advance, Dem.

<!-- PDF EN -->
<?php if(qtrans_getLanguage()=='en'): ?>
    <?php
        if ( $attachments = get_children( array(
            'post_type' => 'attachment',
            'post_mime_type' => array('application/doc','application/pdf','application/msword'),
            'numberposts' => 1,
            'post_status' => null,
            'post_parent' => $post->ID,
            ))) ;
            foreach ($attachments as $attachment) {
            if ($attachment->post_excerpt == 'en') {
                echo '<a href="' . wp_get_attachment_url( $attachment->ID ) . '"><img src="' .get_bloginfo('template_directory') . '/images/pdf.png" alt="Pdf" class="pdf" /></a>';
                echo '';
            }
            }
    ?>
<?php endif; ?>
<!-- PDF FR -->
<?php if(qtrans_getLanguage()=='fr'): ?>
    <?php
        if ( $attachments = get_children( array(
            'post_type' => 'attachment',
            'post_mime_type' => array('application/doc','application/pdf','application/msword'),
            'numberposts' => 1,
            'post_status' => null,
            'post_parent' => $post->ID,
            ))) ;
            foreach ($attachments as $attachment) {
            if ($attachment->post_excerpt == 'fr') {
                echo '<a href="' . wp_get_attachment_url( $attachment->ID ) . '"><img src="' .get_bloginfo('template_directory') . '/images/pdf.png" alt="Pdf" class="pdf" /></a>';
                echo '';
            }
            }
    ?>
<?php endif; ?>
share|improve this question
what part doesn't work? is it hitting either conditional? – mikevoermans Apr 5 '12 at 17:50
Thanks for helping me, mikevoermans. The english is ok, but when I swith in the french version (=default language), the PDF doesn't display. – Démian Peeters Apr 5 '12 at 18:22
OMG! By writing this comment, I found the solution! "'numberposts' => 1," should be deleted. Thanks again to you! – Démian Peeters Apr 5 '12 at 18:27

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.