如何挂钩到get_files函数

时间:2019-10-23 11:13:15

标签: php wordpress

我在不直接编辑代码的情况下处理wordpress页面上的数据时遇到问题。例如,是否有办法访问此页面https://github.com/WordPress/WordPress/blob/master/wp-admin/theme-editor.php并告诉函数get_files不要加载404.php?我以前使用过过滤器和挂钩,但是在这种特殊情况下我会感到迷茫。

我试图钩入get_files来更改循环。

function yur_function()
    unset($allowed_files["404.php"]);
}

add_action('get_files', 'yur_function');

这样的事情。

1 个答案:

答案 0 :(得分:0)

不幸的是,该函数没有任何关联,因此修改该文件列表并不是一件容易的事。 get_files是在wp-includes / class-wp-theme.php中定义的,根本不使用apply_filters。