The7 主题为原版源码,是需要授权码进行授权的,安装主题之后,后台会提示未注册,不注册并不会影响使用,只影响到在线升级和演式内容的导入,若想把未注册变为注册,请接着往下看。
修改主题里面的 dt-the7/incmods/demo-content/includes/class-the7-demo-content-remote-server-api.php 文件,具体修改如下:
第 8 行添加以下代码:
update_site_option( 『the7_registered』, 『yes』 );
update_site_option( 『the7_purchase_code』, 『the7_purchase_code』 );
如下:
<?php
/**
* DTDummy remote API. Used to communicate with DTdummy server.
*
* @since 2.0.0
* @package dt-dummy/includes
*/
update_site_option( 'the7_registered', 'yes');
update_site_option( 'the7_purchase_code','the7_purchase_code');
class The7_demo_Content_Remote_Server_API {