无法获取服务器上位于活动WordPress主题中的文件的确切URL

时间:2015-09-06 作者:Saurabh Chaudhary

我正在处理wordpress文件,在显示总下载计数时遇到问题。

“下载计数”是我保存在活动主题文件内服务器上的文本文件“count.txt”中的数字。

现在,为了显示计数,我使用以下代码。

<?php 
$url= echo get_the_title();

echo file_get_contents( "http://example.com/wp-content/themes/themename/download/$url/count.txt" ); 
//the URL of the text file consist of current wordpress post title. 
?>

1 个回复
SO网友:shanebp

例如,您不能放置php变量$url, 以这种方式在字符串中:

file_get_contents( "http://example.com/wp-content/themes/themename/download/$url/count.txt" );
您可以使用get_template_directory_uri 返回当前主题目录的url。例如:

$url = get_template_directory_uri() . \'/download/count.txt\';
echo file_get_contents( $url );