chore: modify author contact information

pull/388/head
Seaton Jiang 2021-06-25 10:29:53 +08:00
parent ba4cd228a4
commit 711f5a3ed8
No known key found for this signature in database
GPG Key ID: 0E05070D261ACFEA
20 changed files with 41 additions and 41 deletions

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 404 模板 * 404 模板
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2020.04.12 * @version 2021.06.25
*/ */
get_header(); ?> get_header(); ?>

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 评论模板 * 评论模板
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.03.10 * @version 2021.06.25
*/ */
if (isset($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) { if (isset($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) {

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 主题页脚 * 主题页脚
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.04.15 * @version 2021.06.25
*/ */
?> ?>
<div class="k-footer"> <div class="k-footer">

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 模板函数 * 模板函数
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2020.06.25 * @version 2021.06.25
*/ */
define('THEME_VERSION', '3.3.2'); define('THEME_VERSION', '3.3.2');

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 主题页眉 * 主题页眉
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2020.12.14 * @version 2021.06.25
*/ */
?> ?>
<!DOCTYPE html> <!DOCTYPE html>

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 文章相关函数 * 文章相关函数
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.05.24 * @version 2021.06.25
*/ */
// 文章链接添加 target 和 rel // 文章链接添加 target 和 rel

View File

@ -1,7 +1,7 @@
<?php <?php
/** /**
* 核心函数 * 核心函数
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.06.25 * @version 2021.06.25
*/ */
@ -76,9 +76,9 @@ function theme_autoload()
wp_enqueue_script('jquery', ASSET_PATH . '/assets/js/jquery.min.js', array(), '3.4.1', false); wp_enqueue_script('jquery', ASSET_PATH . '/assets/js/jquery.min.js', array(), '3.4.1', false);
wp_enqueue_script('bootstrap-bundle', ASSET_PATH . '/assets/js/bootstrap.bundle.min.js', array(), '4.5.0', true); wp_enqueue_script('bootstrap-bundle', ASSET_PATH . '/assets/js/bootstrap.bundle.min.js', array(), '4.5.0', true);
wp_enqueue_script('layer', ASSET_PATH . '/assets/js/layer.min.js', array(), '3.1.1', true); wp_enqueue_script('layer', ASSET_PATH . '/assets/js/layer.min.js', array(), '3.1.1', true);
wp_enqueue_script('sticky', ASSET_PATH . '/assets/js/theia-sticky-sidebar.min.js', array(), '1.5.0', true); // wp_enqueue_script('sticky', ASSET_PATH . '/assets/js/theia-sticky-sidebar.min.js', array(), '1.5.0', true);
wp_enqueue_script('dplayer', ASSET_PATH . '/assets/js/DPlayer.min.js', array(), THEME_VERSION, true); wp_enqueue_script('dplayer', ASSET_PATH . '/assets/js/DPlayer.min.js', array(), THEME_VERSION, true);
wp_enqueue_script('kratos', ASSET_PATH . '/assets/js/kratos.min.js', array(), THEME_VERSION, true); wp_enqueue_script('kratos', ASSET_PATH . '/assets/js/kratos.js', array(), THEME_VERSION, true);
$data = array( $data = array(
'site' => home_url(), 'site' => home_url(),

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* dogecloud 对象存储 * dogecloud 对象存储
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2020.03.17 * @version 2021.06.25
*/ */
if (kratos_option('g_cos', false)) { if (kratos_option('g_cos', false)) {

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 主题选项 * 主题选项
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.06.17 * @version 2021.06.25
*/ */
function getrobots() function getrobots()

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 站点相关函数 * 站点相关函数
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2020.09.27 * @version 2021.06.25
*/ */
// 标题配置 // 标题配置

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 文章短代码 * 文章短代码
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.05.20 * @version 2021.06.25
*/ */
function h2title($atts, $content = null, $code = "") function h2title($atts, $content = null, $code = "")

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* SMTP 配置 * SMTP 配置
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2020.02.15 * @version 2021.06.25
*/ */
if (kratos_option('m_smtp', false)) { if (kratos_option('m_smtp', false)) {

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* ImageX 图片服务 * ImageX 图片服务
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.06.17 * @version 2021.06.25
*/ */
require_once 'volcengine-imagex/vendor/autoload.php'; require_once 'volcengine-imagex/vendor/autoload.php';

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 侧栏小工具 * 侧栏小工具
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.05.20 * @version 2021.06.25
*/ */
// 添加小工具 // 添加小工具

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 首页模板 * 首页模板
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.05.18 * @version 2021.06.25
*/ */
get_header(); ?> get_header(); ?>

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 页面模板 * 页面模板
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.05.18 * @version 2021.06.25
*/ */
get_header(); ?> get_header(); ?>

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 文章列表 * 文章列表
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.01.06 * @version 2021.06.25
*/ */
?> ?>
<div class="article-panel"> <div class="article-panel">

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 表情图标 * 表情图标
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2020.04.12 * @version 2021.06.25
*/ */
$smilies = ' $smilies = '
<a href="javascript:grin(\':razz:\')"><img src="' . ASSET_PATH . '/assets/img/smilies/razz.png" alt="" class="d-block"/></a> <a href="javascript:grin(\':razz:\')"><img src="' . ASSET_PATH . '/assets/img/smilies/razz.png" alt="" class="d-block"/></a>

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 文章工具栏 * 文章工具栏
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.03.10 * @version 2021.06.25
*/ */
?> ?>
<div class="toolbar clearfix"> <div class="toolbar clearfix">

View File

@ -1,9 +1,9 @@
<?php <?php
/** /**
* 文章内容 * 文章内容
* @author Seaton Jiang <seaton@vtrois.com> * @author Seaton Jiang <seatonjiang@vtrois.com>
* @license MIT License * @license MIT License
* @version 2021.05.22 * @version 2021.06.25
*/ */
get_header(); get_header();