FREE BLOGGER TRICKS

Sign Up To The Free Email Newsletter!

Want to get notified whenever we produce the latest content ? Then subscribe now to start receiving hot updates from today.

Wednesday 19 November 2014

How to Remove url option from comments wordpress

On : 11/19/2014
In :

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;
 }

0 comments:

Post a Comment