Advertisement
5eki

comments.php customize

Nov 6th, 2012
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php
  2. $comments_args = array(
  3.         // 「コメントを残す」のタイトル文字部分を変更する
  4.         'title_reply'=>'<h4>コメントをどうぞ</h4>',
  5.  
  6.         // コメント投稿した人のお名前記入欄
  7.         'author' => '<p id="inputtext">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '(必須)' : '' ) .
  8.                     '<br /><input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>',
  9.  
  10. );
  11.  
  12. comment_form($comments_args);//カスタマイズしたあと、php comment_form();に引数を渡す設定をする
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement