Forums Forums Search & Filter Pro Link results to media file URL not attachment page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Anonymous
    #50996

    Currently I am displaying my results in a list format and want each item to link to its file URL, but it currently links to the file attachment page. I have spent a long time searching for solutions but nothing.

    Here is the code I am working with in results.php:

    <div class="results">
    	<?php
    	while ($query->have_posts())
    	{
    		$query->the_post();
    		
    		?>
    					
    			<div class="thumbs">
    				
    			 <a href="<?php the_permalink(); ?>">• <?php the_title(); ?></a>
    		
    		<?php
    	}
    	?>
    	</div>
    	</div>
    Trevor
    #51003

    You need to be using the get_attachment_url, I think. See here:

    https://codex.wordpress.org/Function_Reference/wp_get_attachment_url

Viewing 2 posts - 1 through 2 (of 2 total)