In WordPress, how do I create a link to a file such as "file.pdf" and force it to download instead of opening the file in the browser?
Just add download attribute ( download) on your a tags and leave it empty as a default file name of a file.
Example:
< a href="http://wordpress.org/download/download.pdf" target="_blank" download>WordPress Download PDF</a>