Search
 
SCRIPT & CODE EXAMPLE
 

PHP

how to remove Website field from comments

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

PREVIOUS NEXT
Code Example
Php :: laravel validation date 
Php :: get id by url wordpress 
Php :: steps to create laravel project 
Php :: php save array in mysql database 
Php :: php binary to base64 
Php :: current date in codeigniter 
Php :: show comma separated numbers in php 
Php :: laravel get all records order by 
Php :: laravel sortby relationship column 
Php :: dump php array into javascript array 
Php :: php artisan tinker PsyExceptionRuntimeException Unable to create PsySH runtime directory 
Php :: web scraping in php 
Php :: laravel where and or condition 
Php :: wp_enqueue_script 
Php :: laravel npm build production 
Php :: laravel eloquent delete 
Php :: wp get post id by slug 
Php :: adding days in datetime php 
Php :: array_key_exists 
Php :: php code to generate strong password 
Php :: woocommerce cart length button shortcode 
Php :: Laravel Retrieve Session Data with default 
Php :: title tag wordpress 
Php :: php get url after question mark 
Php :: Target class [BannerController] does not exist. 
Php :: laravel 8 404 status 
Php :: php rand vs mt_rand 
Php :: codeigniter 4 query builder get inserted id 
Php :: php string left 10 characters 
Php :: bootstrap pagination laravel 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =