相信有很多朋友开始写自己的原创WordPress主题,在这个时候通常很多都是借助于插件或是直接手动推送给用户,无论您是不会写还是没时间折腾更新,或是怕在线更新功能会被盗版也提供更新了今天要讲的方法很不错哟。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
//主题更新功能 add_filter(‘pre_set_site_transient_update_themes’, ‘theme_update’); add_action(‘delete_site_transient_update_themes’, ‘deleteStoredData’) function get_current_theme( $name=false ){ $theme = wp_get_theme(); if($theme->get(‘Template’)){ return $name ? $theme->parent()->get(‘Name’) : $theme->template; }else{ return $name ? $theme->get(‘Name’) : $theme->stylesheet; } } function theme_update($value){ $new_version=‘2.9.6’;//新版 $new_url=‘https://www.xxxx.com/chameleons/’;//介绍页 $new_package=‘https://www.xxxx.com/chameleons/xxx.zip’;//下载包 //以上数据可以定义为post接受参数来赋予,这样可以很好的保护我们主题下载包,你可以加授权验证账号网站等 //注意下方修改变量 $version=‘2.9.5’;//旧版 $state = get_option(‘update_chameleonS’); if ( empty($state) ){ $state = new StdClass; $state->lastCheck = time(); $state->checkedVersion = $version; $state->update = null; } if(version_compare($version, $new_version)<0) { $state->update = new StdClass; $state->update->version = $new_version; $state->update->url = urldecode($new_url); $state->update->package = urldecode($new_package); update_option(‘update_chameleonS’, $state); } global $theme_update_state; if(!isset($theme_update_state)) $theme_update_state = get_option(‘update_chameleonS’); if ( !empty($theme_update_state) && isset($theme_update_state->update) && !empty($theme_update_state->update) ){ |
当你添加搞定好就拥有了和WordPress默认主题更新功能啦,是否很简单呢,好了今天的将更新功能添加到你自己的WordPress主题中教程就写到这里了
1.本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至:115904045@qq.com,我们将第一时间处理!
2.资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持
3.所有资源仅限于参考和学习,版权归原作者所有,更多请阅读网站声明。