文件路径未进入WordPress中的ajax“URL”.显示错误 404


File path not getting in ajax "URL" in wordpress. Showing error of 404.?

我在ajax代码的"URL"中给出了像"counter.php"这样的文件名,该文件位于wordpress根目录中,但找不到文件的错误。请检查代码详细信息。我应该如何在wordpress中添加ajax代码,并在根目录中添加文件。

网络错误: 404 未找到 - http://localhost/wordpress/list/counter.php

这是我的 AJAX 代码

jQuery.ajax({
    type: "POST", //by post method
    url: "counter.php", // file name
    data: { id: ID },
    success: function(data){
        alert(data);
    }
});

没有正确提供文件计数器的路径.php并且您必须在该文件中包含数据库连接。