ওয়ার্ডপ্রেস কমেন্ট ফরম থেকে You may use these HTML tags and attributes সহজেই রিমুভ করা।

খুবি ছোট একটা টুইট এবং সহজ একটা বিষয়। হয়তো অনেকেই জানেন।

ডিফল্ট ভাবে সব প্রায় সব গুলো থিমের কমেন্ট ফরমে নিচের লেখা থাকে।

You may use these HTML tags and attributes: <a href=”” title=””> <abbr title=””> <acronym title=””> <b> <blockquote cite=””> <cite> <code> <del datetime=””> <em> <i> <q cite=””> <strike> <strong>

আপনি সহজেই এটা রিমুভ করতে পারেন। তার জন্য style.css এ নিচের কোডটি যুক্ত করে দিন।


.form-allowed-tags{

display:none;

}

সহজ তাই না?

comment_notes_after

থিমের functions.php বা কোন কোন থিমে comments.php  থেকে ও ইচ্ছে করলে রিমুভ করতে পারেন। তার জন্য ফাইলটি ওপেন করে <?php comment_form(array(‘comment_notes_after’ => ”)); ?> খুজে বের করে রিমুভ করে দিতে পারেন।

3 thoughts on “ওয়ার্ডপ্রেস কমেন্ট ফরম থেকে You may use these HTML tags and attributes সহজেই রিমুভ করা।”

  1. I think, hiding something in wordpress is not good practice. Consider the code…
    function mytheme_init() {
    add_filter(‘comment_form_defaults’,’mytheme_comments_form_defaults’);
    }
    add_action(‘after_setup_theme’,’mytheme_init’);

    function mytheme_comments_form_defaults($default) {
    unset($default[‘comment_notes_after’]);
    return $default;
    }

    Reply

Leave a Reply