我正在尝试创建一个插件,在文章发布后立即在数据库中插入自定义元,但它似乎不起作用。这是我的主要插件文件中的代码片段:
function example($post_ID)
{
?>
<!-- testing -->
<?php
$friends = 'email@domain.com';
mail($friends, "Blog Post", 'New blog post has been submitted.');
return $post_ID;
}
add_filter('publish_post', 'example');
在文章发布后,我没有在页面源中放置我的“测试”评论代码,而且我没有收到任何电子邮件。
尝试使用add_filter和add_action,但它们都不起作用。
向'wp-head'添加动作,无效。