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.
我需要确定用户是否在数据库中插入帖子
我这里有这个功能
add_action("publish_post", "myFunc"); function myFunc(){ echo "Success!"; }
我已经在 QuickPress 小部件上尝试过,它工作正常,但在“添加新帖子”中我没有得到任何回应。
“添加新帖子”模块需要什么操作类型?
提前致谢!
动作名称是save_post(http://codex.wordpress.org/Plugin_API/Action_Reference/save_post)。添加到此处的任何函数都可以将帖子 ID 作为参数提供,以执行您需要的操作。
save_post
缺点是每次保存帖子时都会调用它。
此操作用于从帖子编辑页面保存自定义元框值
希望这可以帮助