Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作一个简单的插件,在用户个人资料页面中显示一些信息(我已经管理了这部分)但我没有开始工作的是我想添加一个函数来检查文件是否存在于一个文件夹(我可以做这部分),但是当我将一个函数添加到插件代码中时,它不起作用或阻止页面显示。
任何帮助都会很棒,我只需要在用户查看配置文件时触发该功能。
function check_file(){ if($file == 'me.jpg'){ //do something } else{} } check_file();
找到了答案
add_action( 'show_user_profile', 'check_file' );
check_file当用户看到配置文件时,上面的行将运行该功能。
check_file