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.
当版主发布帖子时,我可以在 WordPress 代码的哪里添加自己的功能来发送通知?
您主题的 functions.php 文件。
function your_callback() { global $post; // Code here } add_action( 'draft_to_publish', 'your_callback' );