刪除wordpress評(píng)論表單中的網(wǎng)址文本框_html/css
來(lái)源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 15:56:57
刪除wordpress評(píng)論表單中的網(wǎng)址文本框_html/css
刪除wordpress評(píng)論表單中的網(wǎng)址文本框_html/css_WEB-ITnose:原始效果如下 想要去掉這個(gè)鏈接表單,一般想到的方法就是找到 comments.php 文件中的對(duì)應(yīng)表單代碼刪掉。但是現(xiàn)在只需要一段非常簡(jiǎn)單的代碼就可以去除: 代碼如下 add_filter('comment_form_default_fields', 'unset_url_field'
導(dǎo)讀刪除wordpress評(píng)論表單中的網(wǎng)址文本框_html/css_WEB-ITnose:原始效果如下 想要去掉這個(gè)鏈接表單,一般想到的方法就是找到 comments.php 文件中的對(duì)應(yīng)表單代碼刪掉。但是現(xiàn)在只需要一段非常簡(jiǎn)單的代碼就可以去除: 代碼如下 add_filter('comment_form_default_fields', 'unset_url_field'

原始效果如下
想要去掉這個(gè)鏈接表單,一般想到的方法就是找到 comments.php 文件中的對(duì)應(yīng)表單代碼刪掉。但是現(xiàn)在只需要一段非常簡(jiǎn)單的代碼就可以去除:
代碼如下
add_filter('comment_form_default_fields', 'unset_url_field');
funct(www.111cn.net)ion unset_url_field($fields){
if(isset($fields['url']))
unset($fields['url']);
return $fields;
}
只需要把上面代碼添加到主題中的 functions.php 文件中,即可 刪除網(wǎng)站鏈接 表單
from:http://www.111cn.net/wy/wordpress/68255.htm
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
刪除wordpress評(píng)論表單中的網(wǎng)址文本框_html/css
刪除wordpress評(píng)論表單中的網(wǎng)址文本框_html/css_WEB-ITnose:原始效果如下 想要去掉這個(gè)鏈接表單,一般想到的方法就是找到 comments.php 文件中的對(duì)應(yīng)表單代碼刪掉。但是現(xiàn)在只需要一段非常簡(jiǎn)單的代碼就可以去除: 代碼如下 add_filter('comment_form_default_fields', 'unset_url_field'