当前位置:主页 > 网站建设 > WordPress为分类目录添加自定义字段,建站文章
WordPress为分类目录添加自定义字段,建站文章
时间:2023-07-23 10:07:23 阅读: 文章分类: 网站建设 作者: 网站编辑员
导读:建站文章建站文章在开发一些比较独特的主题过程中,需要自定义很多内容,本文是如何为分类添加自定义缩略图。 将如下代码添加到主题functions.php中: //////////网站如何搭建技术支持网站。

在开发一些比较独特的主题过程中,需要自定义很多内容,本文是如何为分类添加自定义缩略图。
将如下代码添加到主题functions.php中:
//////////////////////////////////为分类添加缩略图
function?salong_add_category_field(){
????echo?‘<div?class=“form-field”>
????????????<label?for=“thumb”>’.__(‘缩略图’,’salong’).'</label>
????????????<input?name=“thumb”?id=“thumb”?type=“text”?value=“”?size=“40”>
????????????<p>’.__(‘输入分类的缩略图链接。’,’salong’).'</p>
??????????</div>’;
}
add_action(‘category_add_form_fields’,’salong_add_category_fi织梦模板安装eld’,10,2);
//?分类编辑字段??
function?salong_edit_category_field($tadede模板免费g){
????echo?‘<tr?class=“form-field”>
????????????<th?scope=“row”><label?for=“thumb”>’.__(‘灰色地图’,’salong’).'</label></th>
????????????<td>
????????????????<input?name=“thumb”?id=“thumb”?type=“text”?value=“‘;
????????????????echo?get_option(‘thumb-‘.$tag->term_id).'”?size=“40”/><br>
????????????????<span?class=“thumb”>’.$tag->name.__(‘分类的缩略图链接。’,’salong’).'</span>
????????????</td>
????????</tr>’;
}
add_action(‘category_edit_form_fields’,’salong_edit_category_field’,10,2);
//?保存数据??
function?salong_category_thumb($term_dede织梦模板id){
????if(isset($_POST[‘thumb’])){
????????//判断权限–可改??
????????if(!current_user_can(‘manage_categories’)){
????????????return?$term_id;
????????}
????????$thumb_key?=?‘thumb-‘.$term_id;
????????$thumb_value?=?$_POST[‘thumb’];
????????//?更新选项值??
关键词标签: 建站 自定义 字段
声明: 本文由我的SEOUC技术文章主页发布于:2023-07-23 ,文章WordPress为分类目录添加自定义字段,建站文章主要讲述自定义,字段,建站网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: http://www.tngdez.cn/article/web_34827.html