Wordpress不会显示自定义的php文件,

时间:2018-02-06 10:00:00

标签: php wordpress url

我的网站是wordpress。 我的文件api.phpindex.html位于同一文件夹中 但当我mysite.com/api.php时,它会重定向到wordpress页面,找不到任何页面。

有没有办法通过网址访问自定义php文件(例如api.php)?

3 个答案:

答案 0 :(得分:0)

将文件放到wordpress目录的根目录,其中存在wp-config文件。清除缓存并尝试通过URL访问您的文件。

答案 1 :(得分:0)

将文件(api.php)放到wordpress目录的根目录,其中存在wp-config.php文件。

清除缓存并尝试通过网址访问您的文件。

答案 2 :(得分:0)

Create folder at your website root directory
like:
wp-admin
wp-content
wp-yourfolder/yourfile.php,
than in yourfile.php include

include('wp-config.php');
and do what you want like

$wpdb->get_results( "SELECT post_date, ID  FROM $wpdb->posts  WHERE post_status = 'publish' ");