回答編集履歴
1
display_name に変更
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
if ( isset( $_GET['bbp_reply_to'] ) && (int) $_GET['bbp_reply_to'] ) {
|
10
10
|
|
11
|
-
$display_name = get_the_author_meta( '
|
11
|
+
$display_name = get_the_author_meta( 'display_name', get_post_field( 'post_author', (int) $_GET['bbp_reply_to'] ) );
|
12
12
|
|
13
13
|
return '@' . $display_name . PHP_EOL . $reply_content;
|
14
14
|
|