WordPressブログの通知電子メールの件名をカスタマイズするにはどのようなコードを使用しますか?WordPress:新しいコメント通知の電子メールで件名をカスタマイズ
投稿者がコメントを投稿したとき投稿者に送信される電子メールを意味します。
現時点では対象を約ある:
[%、サイトタイトル%は]コメント: "%ポストタイトル%"
私が使用したい:
新しいコメントがあなたのためのfunctions.phpで現在のコードを待っている
あなたは
comment_moderation_subject
フィルタを使用する必要がfunction comment_moderation_post_author_only($emails, $comment_id) { $comment = get_comment($comment_id); $post = get_post($comment->comment_post_ID); $user = get_userdata($post->post_author); // Return only the post author if the author can modify. if (user_can($user->ID, 'edit_comment', $comment_id) && !empty($user->user_email)) return array($user->user_email); return $emails; } add_filter('comment_moderation_recipients', 'comment_moderation_post_author_only', 11, 2);
質問の答えは変わらない@PierreLebedel – baluba89
更新されています。既にこのコードをfunctions.phpに加えて追加する必要があります – Pierre
完了しましたが、まだ標準の件名を取得しています。 – baluba89