Answers:
有一些处理电子邮件通知的插件,但它们似乎都对(所有)WordPress用户起着订阅服务的作用。
在发布帖子或页面时仅通知您:
/**
* Send an email notification to the administrator when a post is published.
*
* @param string $new_status
* @param string $old_status
* @param object $post
*/
function wpse_19040_notify_admin_on_publish( $new_status, $old_status, $post ) {
if ( $new_status !== 'publish' || $old_status === 'publish' )
return;
if ( ! $post_type = get_post_type_object( $post->post_type ) )
return;
// Recipient, in this case the administrator email
$emailto = get_option( 'admin_email' );
// Email subject, "New {post_type_label}"
$subject = 'New ' . $post_type->labels->singular_name;
// Email body
$message = 'View it: ' . get_permalink( $post->ID ) . "\nEdit it: " . get_edit_post_link( $post->ID );
wp_mail( $emailto, $subject, $message );
}
add_action( 'transition_post_status', 'wpse_19040_notify_admin_on_publish', 10, 3 );
您可以将其放置在主题的中functions.php
,也可以将其另存为插件(可能更合适,因为它与主题无关)。
sha-通过贡献知识,即发布的解决方案并非在所有情况下都有效,来回答该问题。
24小时后,我可以更新我贡献的知识。此位置的解决方案(编辑页面时通知管理员吗?)在上面发布的解决方案不起作用的服务器上工作。为了从线程中引用在两种情况下效果更好的解决方案,我尝试了以下方法:
wpcodex中的原始脚本可以正常工作:
add_action( 'save_post', 'my_project_updated_send_email' );
function my_project_updated_send_email( $post_id ) {
//verify post is not a revision
if ( !wp_is_post_revision( $post_id ) ) {
$post_title = get_the_title( $post_id );
$post_url = get_permalink( $post_id );
$subject = 'A post has been updated';
$message = "A post has been updated on your website:\n\n";
$message .= "<a href='". $post_url. "'>" .$post_title. "</a>\n\n";
//send email to admin
wp_mail( get_option( 'admin_email' ), $subject, $message );
}
}
当然,您将需要使用适当的一个或多个Post Status Transition挂钩和wp_mail()
。
WordPress插件目录中有一个非常灵活的插件,称为“ Post Status Notifier ”。
您可以定义自己的规则,何时发送通知。您可以在状态之前和之后选择收件人,抄送,密件抄送。您可以完全自定义正文文本和主题(带有占位符)。
非常适合我!
如果您不想破解您主题的功能文件,请使用这样的插件。当投稿人提交帖子进行审阅时,它将向管理员发送通知,并在发布该帖子时向投稿人发送电子邮件通知。
https://wordpress.org/plugins/wpsite-post-status-notifications/