WordPress 4.4がリリースされたので先日、アップグレードを行いました。
Version 4.4 – WordPress Codex 日本語版
https://wpdocs.osdn.jp/Version_4.4
いつものようにコンテンツとDBをバックアップしてhttps://ja.wordpress.org/wordpress-4.4-ja.tar.gzをダウンロード後に手動アップデートを行いました。
取り敢えず記事も表示できているし大丈夫かなと思っていたら下記の記事を見つけました。
Move the comment text field to the bottom in WordPress 4.4
http://winaero.com/blog/move-the-comment-text-field-to-the-bottom-in-wordpress-4-4/
Winaeroが何故にWordPress ?と思っていたらコメント欄の項目が逆になったのを修正したのか。
まさかと思ってこのサイトも確認すると確かに逆になってる(^^;
上記サイトの手順通りにfunctions.phpにコードを追加すると今まで通りの表示に戻りました。
1 2 3 4 5 6 7 8 9 10 |
// add to move the comment text field to the bottom in WordPress 4.4 12/12/2015 function wp34731_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'wp34731_move_comment_field_to_bottom' ); // End 12/12/2015 |