ช่วยด้วยครับ เกี่ยวกับการคอมเม้นของwp

เริ่มโดย PaweePH, 06 พฤษภาคม 2015, 15:14:19

หัวข้อก่อนหน้า - หัวข้อถัดไป

0 สมาชิก และ 1 ผู้มาเยือน กำลังดูหัวข้อนี้

PaweePH

มือใหม่หัดทำwordpressครับ ในส่วนล่างของคอมเม้นมันจะมีคำนี้อะครับ "สามารถใช้คำสั่ง HTML เหล่านี้ได้: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>" อยู่บริเวณด้านล่างกล่องคอมเม้น เราสามารถลบออกได้ไหม อย่างไรครับ รูปประกอบครับ http://image.ohozaa.com/view2/ykmnynZmAHAH1b3g ขอบคุณล่วงหน้าครับ  :wanwan017: :wanwan017: :wanwan017:

wasantec

add_filter('comment_form_defaults', 'remove_comment_styling_prompt');

function remove_comment_styling_prompt($defaults) {
$defaults['comment_notes_after'] = '';
return $defaults;
}


ลองเอาไปใส่ไว้ใน Function.php ครับ

PaweePH