如何在wordpress中将上传的文本文件的内容放在页面上?

时间:2014-12-10 06:47:40

标签: php wordpress

我正在开发一个wordpress的网站我想在标题中放入一个txt文件以便在加载时读取

     <?php
$myfile = fopen("keyword.txt", "r") or die("Unable to open file!");
// Output one character until end-of-file
while(!feof($myfile)) {
   echo fgetc($myfile);
}

fclose($myfile);
?>

它没有给出目录文件,请帮我解决n wordpress

的问题

1 个答案:

答案 0 :(得分:0)

假设您的模板目录中有keyword.txt

$myfile = fopen( dirname(__FILE__) . "/keyword.txt", "r") or die("Unable to open file!");