• Resolved micholls

    (@micholls)


    First of all, great plugin!

    Secondly, I’m trying to to display the latest ‘download’ file on the homepage of my website. I’ve been able to successfully display the title and link to the download page.

    What I would like to do though is link directly to the download file, rather than the custom post type page.

    Here’s my code…

    <?php 			
    $args = array( 'post_type' => 'sdm_downloads', 'posts_per_page' => 1 );
    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post(); ?>
    		<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
    <?php endwhile; ?>

    Really appreciate if someone could help with this ??

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Query Latest Download – Direct Link’ is closed to new replies.