WordPress: Change Allowed Comments Html Tags [ allowed_tags() ]

5 comments

Your blog readers can post comments with the html tags. You can display a list of all allowed HTML tags in the comments form using the following php code. Open comments.php (located in your themes directory) file and append the following code either before the comment form or submit button html code (please note that some themes have the following code, but it is usually commented out).

 
Allowed tags: <?php echo allowed_tags(); ?>
 

Change Allowed HTML Tags

Edit functions.php (located in your wp-content/themes/ directory) and append the following code:

 
/*
*  only allow <strong>, <em>, pre, code, and <a href=""> tags
*/
add_action('init', 'my_html_tags_code', 10);
function my_html_tags_code() {
  define('CUSTOM_TAGS', true);
  global $allowedposttags, $allowedtags;
  $allowedposttags = array(
      'strong' => array(),
      'em' => array(),
      'pre' => array(),
      'code' => array(),
      'a' => array(
        'href' => array (),
        'title' => array ())
  );
 
  $allowedtags = array(
      'strong' => array(),
      'em' => array(),
      'pre' => array(),
      'code' => array(),
      'a' => array(
        'href' => array (),
        'title' => array ())
  );
}
 

Save and close the file.

A Note About Thesis Theme

If you are using thesis theme add the following code in custom/custome_functions.php file:

 
function my_allowed_comment_tags() {
        $allowed_tags = '<span class="allowed"><span>' . "\n";
        $allowed_tags .= '<em>' . __('You can use these <acronym title="HyperText Markup Language">HTML</acronym> tags and attributes:', 'thesis') . '</em> ';
        $allowed_tags .= allowed_tags() . "\n";
        $allowed_tags .= '</span></span>' . "\n";
        echo apply_filters('thesis_allowed_tags', $allowed_tags);
}
add_action('thesis_hook_after_comment_box','my_allowed_comment_tags',9);
 

Save and close the file. Make sure you clear cache by visiting supercache or wp-cache setup page.

{ 5 comments… read them below or add one }

Dan June 29, 2011 at 6:10 am

Geat stuff, just what I was looking for, thanks!

Reply

Dan June 29, 2011 at 6:11 am

Apparently I can’t type at 2 in the morning. *Great

Reply

Actuliens January 26, 2012 at 4:56 pm

Great, thks man

Reply

Shine March 13, 2012 at 1:46 pm

Thanks for this tutorial. I really appreciate it.

Reply

joe April 5, 2012 at 12:18 am

thanx is info, good sharing fren !

Reply

Leave a Comment

What is 15 + 4 ?
Please leave these two fields as-is:
Solve the simple math (so we know that you are a human)

Previous post: