WordPress分类栏目添加自定义缩略图

WordPress分类栏目添加自定义缩略图,第1张

概述wordpress企业主题开发中wordpress分类栏目通常是需要单独设置缩略图

下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。内存溢出小编现在分享给大家,也给大家做个参考。

我们通常在 wordpress 企业主题开发中 wordpress 分类栏目通常是需要单独设置缩略图的,今天给大家分享一个如何通过代码来添加分类栏目缩略图字段功能,将如下代码添加到 wordpress 主 functions.PHP 中:

function salong_add_category_fIEld(){

echo '<div >

<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_fIEld',10,2);

// 分类编辑字段

function salong_edit_category_fIEld($tag){

echo '<tr >

<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 >'.$tag->name.__('分类的缩略图链接。','salong').'</span>

</td>

</tr>';

}

add_action('category_edit_form_fIElds','salong_edit_category_fIEld',2);

// 保存数据

function salong_category_thumb($term_ID){

if(isset($_POST['thumb'])){

//判断权限--可改

if(!current_user_can('manage_categorIEs')){

return $term_ID;

}

$thumb_key = 'thumb-'.$term_ID;

$thumb_value = $_POST['thumb'];

// 更新选项值

update_option( $thumb_key,$thumb_value );

}

}

// 虽然要两个钩子,但是我们可以两个钩子使用同一个函数

add_action('created_category','salong_category_thumb',1);

add_action('edited_category',1);

添加好以上代码,如何调用呢,在需要显示分类缩略图的位置添加以下代码即可完成自动的调用功能:

echo get_option('thumb_color-'.$category_ID)

以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

总结

以上是内存溢出为你收集整理的WordPress分类栏目添加自定义缩略图全部内容,希望文章能够帮你解决WordPress分类栏目添加自定义缩略图所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/1009925.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存