真正的原版The7响应式多用途的WordPress企业主题+改为已注册方法

贡献一个Worepress企业主题,大家可以看下图
目前是最新版本v.5.6.0.1 (Oct 13, 2017)
官方链接:https://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590
官方演示主页:http://the7.io/
主题为原版源码,含简体中文语言包(官方的汉化)
下载链接:http://pan.baidu.com/s/1qYibbrQ 密码:0f48 <—刮开
主题为原版源码,是需要授权码进行授权的,安装主题之后,后台会提示未注册,不注册并不会影响使用,只影响到在线升级和演式内容的导入,若想把未注册变为注册,请接着往下看。
修改主题里面的dt-the7incmodsdemo-contentincludesclass-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 {
修改后保存,安装主题后,主题将显示为已注册,如下图:

若想要导放官方的演式内容,接着往下修改:

 

删除95行至110行的内容,红色为要删除的代码
                $request_url = add_query_arg( array( ‘item’ => $id, ‘code’ => $code ), $this->api_remote_download_url );
                $remote_response = wp_safe_remote_get( $request_url, array(
                        ‘timeout’ => 300,
                        ‘user-agent’ => ‘WordPress/’ . get_bloginfo( ‘version’ ) . ‘; ‘ . network_site_url(),
                ) );
                if ( is_wp_error( $remote_response ) ) {
                        return $remote_response;
                }
                $response_code = wp_remote_retrieve_response_code( $remote_response );
                if ( ! is_array( $remote_response ) || 200 != $response_code ) {
                        return new WP_Error( ‘download_failed’, $this->strings[‘download_failed’] );
                }
删除114行的内容,红色为要删除的代码
$file_content = wp_remote_retrieve_body( $remote_response );
删除116行的内容,红色为要删除的代码
$wp_filesystem->put_contents( $zip_file_name, $file_content );

以下为原文件部份内容

publicfunction download_dummy( $id, $code, $target_dir ) {
        /**
         * @var $wp_filesystem WP_Filesystem_Base
         */
        global$wp_filesystem;
        if( ! $wp_filesystem && ! WP_Filesystem() ) {
                return new WP_Error( 'fs_unavailable', $this->strings['fs_unavailable'] );
        }
        if( is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code() ) {
                return new WP_Error( 'fs_error', $this->strings['fs_error'], $wp_filesystem->errors );
        }
        
        $request_url = add_query_arg( array( 'item'=> $id, 'code'=> $code ), $this->api_remote_download_url );
        $remote_response = wp_safe_remote_get( $request_url, array(
                'timeout'=> 300,
                'user-agent'=> 'WordPress/'. get_bloginfo( 'version') . '; '. network_site_url(),
        ) );
        if( is_wp_error( $remote_response ) ) {
                return $remote_response;
        }
        $response_code = wp_remote_retrieve_response_code( $remote_response );
        if( ! is_array( $remote_response ) || 200 != $response_code ) {
                return new WP_Error( 'download_failed', $this->strings['download_failed'] );
        }
        wp_mkdir_p( $target_dir );
        $file_content = wp_remote_retrieve_body( $remote_response );
        $zip_file_name = trailingslashit( $target_dir ) . "{$id}.zip";
        $wp_filesystem->put_contents( $zip_file_name, $file_content );
        $unzip_result = unzip_file( $zip_file_name, $target_dir );
        if( is_wp_error( $unzip_result ) ) {
                return new WP_Error( 'incompatible_archive', $this->strings['incompatible_archive'], $unzip_result );
        }
        $dummy_dir = trailingslashit( $target_dir ) . $id;
        if( ! is_dir( $dummy_dir ) ) {
                return new WP_Error( 'fs_no_folder', sprintf( $this->strings['fs_no_folder'], $dummy_dir ) );
        }
        return $dummy_dir;
}
修改后保存,安装主题后,主题将显示为已注册,上传the7-demo-content-tmp(文件在下方下载)文件夹到Wordpress的wp-content/uploads/ 目录下,然后转到仪表盘的 The7 – Pre-made Websites,开始导入你想要的演示吧,如下图:
234520qncranivrnrkztcl

the7-demo-content-tmp演示数据下载地址:
链接:http://pan.baidu.com/s/1c1FZrJM 密码:x0ss
插件下载地址:
链接:http://pan.baidu.com/s/1c1A9Ge0 密码:iabw
 

Read more

2017年7款最好用的 WordPress 多语言翻译插件

现而今,最通用的语言当属英语。Ethnologue(民族语言网)在其2015年版用户手册中指出,在全球74亿人中,有近10亿人以某种形式说英语,有4亿人以英语为母语。 与使用互联网有关的数据则更加有趣。网络技术调查网站W3Techs公司的调查结果表明,虽然仅有25.9%的互联网用户说英语,但是多半,准确地说,53.6%的互联网内容使用的都是英语。这里明显存在一个问题,也给使用多语言工作且经验丰富的 …

Read more

安装 LNMP 环境遇到的几个问题和解决方法

之前买的阿里云服务器明天要到期了,今天买了个新服务器花了半天时间安装 LNMP 环境。之前是直接用的镜像市场里的现成环境,这次自己手动安装遇到了不少问题,在这里记录下。 MySQL said: Lost connection to MySQL server at ‘reading initial communication packet’, system error: 0 …

Read more

关于WordPress的一些学习方法

首先, WordPress 是国外的一款开源 CMS 。 它有些强大,强大到我都不知该如何去描述它。它几乎能完成你所想到的所有类型的网站。这一点也不夸张,我们团队曾用它完成了一单6位数的项目。 它有些强大,强大到我们都不知该如何去接近它,熟悉它,学习并应用它。 WordPress 是国外的 CMS , 有关于它的网站几乎都在国外 官方网站:https://wordpress.org 这里边有关于 …

Read more

2017年,为什么wordpress网站应该使用Jetpack插件?

更新:2017-10-10
很多用户反馈,使用这个插件后,网站打开变慢,这里长沙seo霜天给大家支招。
修改代码:/wp-content/plugins/jetpack/modules/sharedaddy/sharing.js
找到:第23行

linkedin: [‘https://www.linkedin.com/countserv/count/share?format=jsonp&callback=updateLinkedInCount&url=’ + encodeURIComponent(url)],
// Pinterest, like LinkedIn, handles share counts for both http and https
pinterest: [window.location.protocol + ‘//api.pinterest.com/v1/urls/count.json?callback=WPCOMSharing.update_pinterest_count&url=’ + encodeURIComponent(url)],
// Facebook protocol summing has been shown to falsely double counts, so we only request the current URL
facebook: [window.location.protocol + ‘//graph.facebook.com/?callback=WPCOMSharing.update_facebook_count&ids=’ + encodeURIComponent(url)]
};

这一段代码删掉,即可解决网站打开慢的问题。

Read more

wordpress网站建设及维护收费标准

服务项目 更懂WordPress的网站建设团队,从服务器环境配置,到后期维护,我们都可以帮您完成 服务项目 服务内容 收费标准(元) 付费主题 WordPress主题,功能强大,配置简单,可支持演示数据一键导入,新版本可后台推送直接更新。购买后可免费提供半年技术支持以及永久的更新升级服务。(不包含服务和域名费用) 3000/个 主题修改 基于我们现有的原创主题,定制新的功能模块、修改功能或样式代码 …

Read more

WORDPRESS常用固定链接(伪静态)格式

对于熟知SEO的童鞋来说,页面伪静态无疑于有助于网站优化,而wordpress程序本身已经非常人性化了,安装好程序到后台设置》固定链接》直接进行设置,动态、静态任君选择。 而固定链接的自定义结构,由于目前国类虚拟主机类型分为linux和win2003,设置方法各不相同。 而对于wordpress伪静态实现来说,linux主机下才是最合适的,不需要过多的设置,只需要在后台直接定义永久链接的格式。 w …

Read more

WordPress中国加速插件:WP Acceleration for China

众所周知的一些原因,最近很长一段时间在国内使用WordPress建站会发现打开非常慢,有很多用户也跟我吐槽过这个问题,所以之前我也给出了解决方案(替换谷歌字体,解决WordPress打开慢问题),但是这些天还发现不止是google的资源打不开了,因为在WordPress上广泛使用的Gravatar头像都无法打开,这也会导致页面一直处在loading状态,所以WP Acceleration for …

Read more

25个最受用户喜爱的免费WordPress插件

你知道哪些免费的WordPress插件最受用户的欢迎吗?你知道这些插件为什么深受用户的喜爱吗?知道这个问题的答案,可以帮你了解你的网站需要安装哪些插件,哪些插件你不应该错过。 对于你的WordPress网站来说,使用的插件越多,网站功能就越强大;但同时也意味着网站越臃肿,速度越慢,存在漏洞的风险也越大。因此,明智地挑选WordPress插件,不仅可以让你的网站更加安全,也可以让你的网站更加快捷,有 …

Read more

Windows IIS 7.5 WordPress伪静态中文链接404错误解决办法

对于WordPress建站,虽然我们一直推荐用户使用linux系统,但是无可避免的依然会有很多用户由于种种原因选择了windows系统,并且也会经常有用户遇到中文链接404错误的问题,现在我们针对Windows IIS 7.5下的中文链接(比如标签页)404错误提供一种解决方案。 首先,我们在WordPress安装目录下,新建一个“index2.php”文件,内容如下: <?php // I …

Read more