我想添加下载wordpress内容的下载按钮为.txt文件。并创建此代码:
<?php
$filename = get_the_id().".txt";
$myfile = fopen($filename, "w") or die("Unable to open file!");
$txt = get_post_field('post_content');
fwrite($myfile, $txt);
fclose($myfile);
?>
并且这个:
<a class="content-download" target="_blank" href="<?php echo home_url(); ?>/<?php echo $filename; ?>">Download Content</a>
它可以工作,但.txt文件没有下载。它将在新标签中打开。我可以将其设为可下载吗?