我已经在function.php中使用以下代码从wp-content / uploads获取上传的文件。文件已成功上传到wp-content / uploads。
我尝试了下面提到的代码来下载/查看网页中的文件。但这似乎不起作用。
function load_query_list()
{
if( is_page( 'query-list-admin-area' ) )
{
global $wpdb;
$results = $wpdb->get_results( "SELECT * FROM tbl_Query " );
if(!empty($results))
{
echo "<table width='50%' border='0' align='center' style='margin:30px;color:black'>";
echo"<thead><tr><th>Email</th><th>QuerNo</th><th>Query</th><th>Status</th><th>FileName</th><th>View</th></tr></thead>";
foreach ( $results as $res )
{
echo "<tr><td>".$res->Email."</td><td>".$res->QueryNo."</td><td>".$res->Query."</td><td>".$res->Reply."</td><td>".$res->fname."</td><td><a href=/home/u992815795/domains/taxhomes.in/public_html/wp-content/uploads/".$res->fname.">View File</a></td></tr>";
}
}
}
}
我想在单击mycode中的viewFile超链接时从wp-content / uploads查看/下载上传的文件。