我正在处理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.
?>