WordPress Post-Notification – Show the author in email subject

I was trying to fix a WordPress Post Notification plugin to include the post author in the emails subject. Instead of inserting the author name it was leaving the @@author in the subject.

A little digging around found me the solution -

In sendmail.php->post_notification_create_email(), find -

$subject = get_option('post_notification_subject');

and add a new line after that -

$subject = str_replace('@@author', $post_author, $subject);

Ref – Post Notification forum

2 comments ↓

#1 Shadow on 12.30.09 at 8:54 am

Норм

#2 Евстафий on 01.22.10 at 3:15 am

Хм

Leave a Comment