Saturday 14 December 2013

How to Remove url option from comments wordpress

You could try adding a filter to your wp-content/themes/your theme name/functions.php
try inserting it in functions.php after the opening php tag: <?php

add_filter('comment_form_default_fields', 'url_filtered');
function url_filtered($fields)
{
  if(isset($fields['url']))
   unset($fields['url']);
  return $fields;
}



Subscribe to Our Blog Updates!




Share this article!

No comments:

Post a Comment

Return to top of page
Powered By Blogger | Copyright ©2013 Advance Tutorials And Tricks