当作者发布帖子时,我使用以下方法向管理员发送电子邮件:
add_action(\'publish_post\', \'send_admin_email\'); function send_admin_email($post_id){
$to = \'[email protected]\';
$subject = \'subject\';
$message = "Here is :".get_permalink($post_id);
wp_mail($to, $subject, $message );
我想在中添加帖子作者
$message
.
我试着get_the_author();
和the_author();
但什么都没发生。