" . __("Argon 主题不支持 Wordpress 4.4 以下版本,请更新 Wordpress", 'argon') . ""; } function theme_slug_setup() { add_theme_support('title-tag'); add_theme_support('post-thumbnails'); load_theme_textdomain('argon', get_template_directory() . '/languages'); } add_action('after_setup_theme','theme_slug_setup'); $argon_version = !(wp_get_theme() -> Template) ? wp_get_theme() -> Version : wp_get_theme(wp_get_theme() -> Template) -> Version; $GLOBALS['theme_version'] = $argon_version; $argon_assets_path = get_option("argon_assets_path"); switch ($argon_assets_path) { case "jsdelivr": $GLOBALS['assets_path'] = "https://cdn.jsdelivr.net/gh/solstice23/argon-theme@" . $argon_version; break; case "fastgit": $GLOBALS['assets_path'] = "https://raw.fastgit.org/solstice23/argon-theme/v" . $argon_version; break; case "sourcegcdn": $GLOBALS['assets_path'] = "https://gh.sourcegcdn.com/solstice23/argon-theme/v" . $argon_version; break; case "jsdelivr_gcore": $GLOBALS['assets_path'] = "https://gcore.jsdelivr.net/gh/solstice23/argon-theme@" . $argon_version; break; case "jsdelivr_fastly": $GLOBALS['assets_path'] = "https://fastly.jsdelivr.net/gh/solstice23/argon-theme@" . $argon_version; break; case "jsdelivr_cf": $GLOBALS['assets_path'] = "https://testingcf.jsdelivr.net/gh/solstice23/argon-theme@" . $argon_version; break; case "custom": $GLOBALS['assets_path'] = preg_replace('/\/$/', '', get_option("argon_custom_assets_path")); $GLOBALS['assets_path'] = preg_replace('/%theme_version%/', $argon_version, $GLOBALS['assets_path']); break; default: $GLOBALS['assets_path'] = get_bloginfo('template_url'); } //翻译 Hook function argon_locate_filter($locate){ if (substr($locate, 0, 2) == 'zh'){ if ($locate == 'zh_TW'){ return $locate; } return 'zh_CN'; } if (substr($locate, 0, 2) == 'en'){ return 'en_US'; } if (substr($locate, 0, 2) == 'ru'){ return 'ru_RU'; } return 'en_US'; } function argon_get_locate(){ if (function_exists("determine_locale")){ return argon_locate_filter(determine_locale()); } $determined_locale = get_locale(); if (is_admin()){ $determined_locale = get_user_locale(); } } function theme_locale_hook($locate, $domain){ if ($domain == 'argon'){ return argon_locate_filter($locate); } return $locate; } add_filter('theme_locale', 'theme_locale_hook', 10, 2); //更新主题版本后的兼容 $argon_last_version = get_option("argon_last_version"); if ($argon_last_version == ""){ $argon_last_version = "0.0"; } if (version_compare($argon_last_version, $GLOBALS['theme_version'], '<' )){ if (version_compare($argon_last_version, '0.940', '<')){ if (get_option('argon_mathjax_v2_enable') == 'true' && get_option('argon_mathjax_enable') != 'true'){ update_option("argon_math_render", 'mathjax2'); } if (get_option('argon_mathjax_enable') == 'true'){ update_option("argon_math_render", 'mathjax3'); } } if (version_compare($argon_last_version, '0.970', '<')){ if (get_option('argon_show_author') == 'true'){ update_option("argon_article_meta", 'time|views|comments|categories|author'); } } if (version_compare($argon_last_version, '1.1.0', '<')){ if (get_option('argon_enable_zoomify') != 'false'){ update_option("argon_enable_fancybox", 'true'); update_option("argon_enable_zoomify", 'false'); } } if (version_compare($argon_last_version, '1.3.4', '<')){ switch (get_option('argon_search_post_filter', 'post,page')){ case 'post,page': update_option("argon_enable_search_filters", 'true'); update_option("argon_search_filters_type", '*post,*page,shuoshuo'); break; case 'post,page,shuoshuo': update_option("argon_enable_search_filters", 'true'); update_option("argon_search_filters_type", '*post,*page,*shuoshuo'); break; case 'post,page,hide_shuoshuo': update_option("argon_enable_search_filters", 'true'); update_option("argon_search_filters_type", '*post,*page'); break; case 'off': default: update_option("argon_enable_search_filters", 'false'); break; } } update_option("argon_last_version", $GLOBALS['theme_version']); } //检测更新 require_once(get_template_directory() . '/theme-update-checker/plugin-update-checker.php'); $argon_update_source = get_option('argon_update_source'); switch ($argon_update_source) { case "stop": break; case "fastgit": $argonThemeUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'https://api.solstice23.top/argon/info.json?source=fastgit', get_template_directory() . '/functions.php', 'argon' ); break; case "cfworker": $argonThemeUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'https://api.solstice23.top/argon/info.json?source=cfworker', get_template_directory() . '/functions.php', 'argon' ); break; case "solstice23top": $argonThemeUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'https://api.solstice23.top/argon/info.json?source=0', get_template_directory() . '/functions.php', 'argon' ); break; case "github": default: $argonThemeUpdateChecker = Puc_v4_Factory::buildUpdateChecker( 'https://raw.githubusercontent.com/solstice23/argon-theme/master/info.json', get_template_directory() . '/functions.php', 'argon' ); } //初次使用时发送安装量统计信息 (数据仅用于统计安装量) function post_analytics_info(){ if(function_exists('file_get_contents')){ $contexts = stream_context_create( array( 'http' => array( 'method'=>"GET", 'header'=>"User-Agent: ArgonTheme\r\n" ) ) ); $result = file_get_contents('http://api.solstice23.top/argon_analytics/index.php?domain=' . urlencode($_SERVER['HTTP_HOST']) . '&version='. urlencode($GLOBALS['theme_version']), false, $contexts); update_option('argon_has_inited', 'true'); return $result; }else{ update_option('argon_has_inited', 'true'); } } if (get_option('argon_has_inited') != 'true'){ post_analytics_info(); } //时区修正 if (get_option('argon_enable_timezone_fix') == 'true'){ date_default_timezone_set('UTC'); } //注册小工具 function argon_widgets_init() { register_sidebar( array( 'name' => __('左侧栏小工具', 'argon'), 'id' => 'leftbar-tools', 'description' => __( '左侧栏小工具 (如果设置会在侧栏增加一个 Tab)', 'argon'), 'before_widget' => '
', 'before_title' => '[\S\s]*?([\S\s]*?)<\/code>[\S\s]*?<\/pre>/im', $str, $codeSegments, PREG_PATTERN_ORDER);
$codeSegments = $codeSegments[3];
$codeTotal = 0;
foreach ($codeSegments as $codeSegment){
$codeLines = preg_split('/\r\n|\n|\r/', $codeSegment);
foreach ($codeLines as $line){
if (strlen(trim($str)) > 0){
$codeTotal++;
}
}
}
$str = preg_replace(
'/[\S\s]*?<\/code>/im',
'',
$str
);
$str = preg_replace(
'/[\S\s]*?<\/pre>/im',
'',
$str
);
$str = preg_replace(
'/";
}
return $content;
}
add_filter('the_content' , 'the_content_filter',20);
//使用 CDN 加速 gravatar
function gravatar_cdn($url){
$cdn = get_option('argon_gravatar_cdn', 'gravatar.pho.ink/avatar/');
$cdn = str_replace("http://", "", $cdn);
$cdn = str_replace("https://", "", $cdn);
if (substr($cdn, -1) != '/'){
$cdn .= "/";
}
$url = preg_replace("/\/\/(.*?).gravatar.com\/avatar\//", "//" . $cdn, $url);
return $url;
}
if (get_option('argon_gravatar_cdn' , '') != ''){
add_filter('get_avatar_url', 'gravatar_cdn');
}
function text_gravatar($url){
$url = preg_replace("/[?&]d[^&]+/i", "" , $url);
$url .= '&d=404';
return $url;
}
if (get_option('argon_text_gravatar', 'false') == 'true' && !is_admin()){
add_filter('get_avatar_url', 'text_gravatar');
}
//说说点赞
function get_shuoshuo_upvotes($ID){
$count_key = 'upvotes';
$count = get_post_meta($ID, $count_key, true);
if ($count==''){
delete_post_meta($ID, $count_key);
add_post_meta($ID, $count_key, '0');
$count = '0';
}
return number_format_i18n($count);
}
function set_shuoshuo_upvotes($ID){
if (get_post_type($ID) != 'shuoshuo'){
return;
}
$count_key = 'upvotes';
$count = get_post_meta($ID, $count_key, true);
if ($count==''){
delete_post_meta($ID, $count_key);
add_post_meta($ID, $count_key, '1');
} else {
update_post_meta($ID, $count_key, $count + 1);
}
}
function upvote_shuoshuo(){
header('Content-Type:application/json; charset=utf-8');
$ID = $_POST["shuoshuo_id"];
$upvotedList = isset( $_COOKIE['argon_shuoshuo_upvoted'] ) ? $_COOKIE['argon_shuoshuo_upvoted'] : '';
if (in_array($ID, explode(',', $upvotedList))){
exit(json_encode(array(
'status' => 'failed',
'msg' => __('该说说已被赞过', 'argon'),
'total_upvote' => get_shuoshuo_upvotes($ID)
)));
}
set_shuoshuo_upvotes($ID);
setcookie('argon_shuoshuo_upvoted', $upvotedList . $ID . "," , time() + 3153600000 , '/');
exit(json_encode(array(
'ID' => $ID,
'status' => 'success',
'msg' => __('点赞成功', 'argon'),
'total_upvote' => get_shuoshuo_upvotes($ID)
)));
}
add_action('wp_ajax_upvote_shuoshuo' , 'upvote_shuoshuo');
add_action('wp_ajax_nopriv_upvote_shuoshuo' , 'upvote_shuoshuo');
//检测页面底部版权是否被修改
function alert_footer_copyright_changed(){ ?>
template . "/footer.php");
if ((strpos($footer, "github.com/solstice23/argon-theme") === false) && (strpos($footer, "solstice23.top") === false)){
add_action('admin_notices', 'alert_footer_copyright_changed');
}
}
check_footer_copyright();
//颜色计算
function rgb2hsl($R,$G,$B){
$r = $R / 255;
$g = $G / 255;
$b = $B / 255;
$var_Min = min($r, $g, $b);
$var_Max = max($r, $g, $b);
$del_Max = $var_Max - $var_Min;
$L = ($var_Max + $var_Min) / 2;
if ($del_Max == 0){
$H = 0;
$S = 0;
}else{
if ($L < 0.5){
$S = $del_Max / ($var_Max + $var_Min);
}else{
$S = $del_Max / (2 - $var_Max - $var_Min);
}
$del_R = ((($var_Max - $r) / 6) + ($del_Max / 2)) / $del_Max;
$del_G = ((($var_Max - $g) / 6) + ($del_Max / 2)) / $del_Max;
$del_B = ((($var_Max - $b) / 6) + ($del_Max / 2)) / $del_Max;
if ($r == $var_Max){
$H = $del_B - $del_G;
}
else if ($g == $var_Max){
$H = (1 / 3) + $del_R - $del_B;
}
else if ($b == $var_Max){
$H = (2 / 3) + $del_G - $del_R;
}
if ($H < 0) $H += 1;
if ($H > 1) $H -= 1;
}
return array(
'h' => $H,//0~1
's' => $S,
'l' => $L,
'H' => round($H * 360),//0~360
'S' => round($S * 100),//0~100
'L' => round($L * 100),//0~100
);
}
function Hue_2_RGB($v1,$v2,$vH){
if ($vH < 0) $vH += 1;
if ($vH > 1) $vH -= 1;
if ((6 * $vH) < 1) return ($v1 + ($v2 - $v1) * 6 * $vH);
if ((2 * $vH) < 1) return $v2;
if ((3 * $vH) < 2) return ($v1 + ($v2 - $v1) * ((2 / 3) - $vH) * 6);
return $v1;
}
function hsl2rgb($h,$s,$l){
if ($s == 0){
$r = $l;
$g = $l;
$b = $l;
}
else{
if ($l < 0.5){
$var_2 = $l * (1 + $s);
}
else{
$var_2 = ($l + $s) - ($s * $l);
}
$var_1 = 2 * $l - $var_2;
$r = Hue_2_RGB($var_1, $var_2, $h + (1 / 3));
$g = Hue_2_RGB($var_1, $var_2, $h);
$b = Hue_2_RGB($var_1, $var_2, $h - (1 / 3));
}
return array(
'R' => round($r * 255),//0~255
'G' => round($g * 255),
'B' => round($b * 255),
'r' => $r,//0~1
'g' => $g,
'b' => $b
);
}
function rgb2hex($r,$g,$b){
$hex = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F');
$rh = "";
$gh = "";
$bh = "";
while (strlen($rh) < 2){
$rh = $hex[$r%16] . $rh;
$r = floor($r / 16);
}
while (strlen($gh) < 2){
$gh = $hex[$g%16] . $gh;
$g = floor($g / 16);
}
while (strlen($bh) < 2){
$bh = $hex[$b%16] . $bh;
$b = floor($b / 16);
}
return "#".$rh.$gh.$bh;
}
function hexstr2rgb($hex){
//$hex: #XXXXXX
return array(
'R' => hexdec(substr($hex,1,2)),//0~255
'G' => hexdec(substr($hex,3,2)),
'B' => hexdec(substr($hex,5,2)),
'r' => hexdec(substr($hex,1,2)) / 255,//0~1
'g' => hexdec(substr($hex,3,2)) / 255,
'b' => hexdec(substr($hex,5,2)) / 255
);
}
function rgb2str($rgb){
return $rgb['R']. "," .$rgb['G']. "," .$rgb['B'];
}
function hex2str($hex){
return rgb2str(hexstr2rgb($hex));
}
function rgb2gray($R,$G,$B){
return round($R * 0.299 + $G * 0.587 + $B * 0.114);
}
function hex2gray($hex){
$rgb_array = hexstr2rgb($hex);
return rgb2gray($rgb_array['R'], $rgb_array['G'], $rgb_array['B']);
}
function checkHEX($hex){
if (strlen($hex) != 7){
return False;
}
if (substr($hex,0,1) != "#"){
return False;
}
return True;
}
//编辑文章界面新增 Meta 编辑模块
function argon_meta_box_1(){
wp_nonce_field("argon_meta_box_nonce_action", "argon_meta_box_nonce");
global $post;
?>
ID, "argon_hide_readingtime", true);?>
ID, "argon_meta_simple", true);?>
ID, "argon_first_image_as_thumbnail", true);?>
ID, "argon_show_post_outdated_info", true);?>
ID, "argon_after_post", true);?>
--none--
则不显示。", 'argon');?>
ID, "argon_custom_css", true);?>
'success'
)));
return;
}
$result = update_post_meta($post_id, $meta_key, $meta_value);
if ($result){
exit(json_encode(array(
'status' => 'success'
)));
}else{
exit(json_encode(array(
'status' => 'failed'
)));
}
}
add_action('wp_ajax_update_post_meta_ajax' , 'update_post_meta_ajax');
add_action('wp_ajax_nopriv_update_post_meta_ajax' , 'update_post_meta_ajax');
//首页显示说说
function argon_home_add_post_type_shuoshuo($query){
if (is_home() && $query -> is_main_query()){
$query -> set('post_type', array('post', 'shuoshuo'));
}
return $query;
}
if (get_option("argon_home_show_shuoshuo") == "true"){
add_action('pre_get_posts', 'argon_home_add_post_type_shuoshuo');
}
//首页隐藏特定分类文章
function argon_home_hide_categories($query){
if (is_home() && $query -> is_main_query()){
$excludeCategories = explode(",", get_option("argon_hide_categories"));
$excludeCategories = array_map(function($cat) { return -$cat; }, $excludeCategories);
$query -> set('category__not_in', $excludeCategories);
$query -> set('tag__not_in', $excludeCategories);
}
return $query;
}
if (get_option("argon_hide_categories") != ""){
add_action('pre_get_posts', 'argon_home_hide_categories');
}
//文章过时信息显示
function argon_get_post_outdated_info(){
global $post;
$post_show_outdated_info_status = strval(get_post_meta($post -> ID, 'argon_show_post_outdated_info', true));
if (get_option("argon_outdated_info_tip_type") == "toast"){
$before = "";
}else{
$before = "";
$after = "";
}
$content = get_option('argon_outdated_info_tip_content') == '' ? '本文最后更新于 %date_delta% 天前,其中的信息可能已经有所发展或是发生改变。' : get_option('argon_outdated_info_tip_content');
$delta = get_option('argon_outdated_info_days') == '' ? (-1) : get_option('argon_outdated_info_days');
if ($delta == -1){
$delta = 2147483647;
}
$post_date_delta = floor((current_time('timestamp') - get_the_time("U")) / (60 * 60 * 24));
$modify_date_delta = floor((current_time('timestamp') - get_the_modified_time("U")) / (60 * 60 * 24));
if (get_option("argon_outdated_info_time_type") == "createdtime"){
$date_delta = $post_date_delta;
}else{
$date_delta = $modify_date_delta;
}
if (($date_delta <= $delta && $post_show_outdated_info_status != 'always') || $post_show_outdated_info_status == 'never'){
return "";
}
$content = str_replace("%date_delta%", $date_delta, $content);
$content = str_replace("%modify_date_delta%", $modify_date_delta, $content);
$content = str_replace("%post_date_delta%", $post_date_delta, $content);
return $before . $content . $after;
}
//Gutenberg 编辑器区块
function argon_init_gutenberg_blocks() {
wp_register_script(
'argon-gutenberg-block-js',
$GLOBALS['assets_path'].'/gutenberg/dist/blocks.build.js',
array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor'),
null,
true
);
wp_register_style(
'argon-gutenberg-block-backend-css',
$GLOBALS['assets_path'].'/gutenberg/dist/blocks.editor.build.css',
array('wp-edit-blocks'),
filemtime(get_template_directory() . '/gutenberg/dist/blocks.editor.build.css')
);
register_block_type(
'argon/argon-gutenberg-block', array(
//'style' => 'argon-gutenberg-block-frontend-css',
'editor_script' => 'argon-gutenberg-block-js',
'editor_style' => 'argon-gutenberg-block-backend-css',
)
);
}
add_action('init', 'argon_init_gutenberg_blocks');
function argon_add_gutenberg_category($block_categories, $editor_context) {
if (!empty($editor_context->post)){
array_push(
$block_categories,
array(
'slug' => 'argon',
'title' => 'Argon',
'icon' => null,
)
);
}
return $block_categories;
}
add_filter('block_categories_all', 'argon_add_gutenberg_category', 10, 2);
function argon_admin_i18n_info(){
echo "";
}
add_filter('admin_head', 'argon_admin_i18n_info');
//主题文章短代码解析
function shortcode_content_preprocess($attr, $content = ""){
if ( isset( $attr['nested'] ) ? $attr['nested'] : 'true' != 'false' ){
return do_shortcode($content);
}else{
return $content;
}
}
add_shortcode('br','shortcode_br');
function shortcode_br($attr,$content=""){
return "";
}
add_shortcode('label','shortcode_label');
function shortcode_label($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$out = "";
return $out;
}
add_shortcode('progressbar','shortcode_progressbar');
function shortcode_progressbar($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$out = "";
if ($content != ""){
$out .= "" . $content . "";
}
$progress = isset( $attr['progress'] ) ? $attr['progress'] : 100;
$out .= "" . $progress . "%";
$out .= "";
return $out;
}
add_shortcode('checkbox','shortcode_checkbox');
function shortcode_checkbox($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$checked = isset( $attr['checked'] ) ? $attr['checked'] : 'false';
$inline = isset($attr['inline']) ? $attr['checked'] : 'false';
$out = "
";
return $out;
}
add_shortcode('alert','shortcode_alert');
function shortcode_alert($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$out = "";
}
$out .= "";
if (isset($attr['title'])){
$out .= "" . $attr['title'] . " ";
}
$out .= $content . "";
return $out;
}
add_shortcode('admonition','shortcode_admonition');
function shortcode_admonition($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$out = " ";
}
$out .= $attr['title'] . "";
}
if ($content != ''){
$out .= "" . $content . "";
}
$out .= "";
return $out;
}
add_shortcode('collapse','shortcode_collapse_block');
add_shortcode('fold','shortcode_collapse_block');
function shortcode_collapse_block($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$collapsed = isset( $attr['collapsed'] ) ? $attr['collapsed'] : 'true';
$show_border_left = isset( $attr['showleftborder'] ) ? $attr['showleftborder'] : 'false';
$out = " ";
}
$out .= "" . $title . "";
$out .= "";
$out .= "";
return $out;
}
add_shortcode('friendlinks','shortcode_friend_link');
function shortcode_friend_link($attr,$content=""){
$sort = isset( $attr['sort'] ) ? $attr['sort'] : 'name';
$order = isset( $attr['order'] ) ? $attr['order'] : 'ASC';
$friendlinks = get_bookmarks( array(
'orderby' => $sort ,
'order' => $order
));
$style = isset( $attr['style'] ) ? $attr['style'] : '1';
switch ($style) {
case '1':
$class = "friend-links-style1";
break;
case '1-square':
$class = "friend-links-style1 friend-links-style1-square";
break;
case '2':
$class = "friend-links-style2";
break;
case '2-big':
$class = "friend-links-style2 friend-links-style2-big";
break;
default:
$class = "friend-links-style1";
break;
}
$out = "";
foreach ($friendlinks as $friendlink){
$out .= "
";
if ($friendlink -> link_image != ''){
$out .= "
";
}
$out .= "
" . esc_html($friendlink -> link_description) . "";
$out .= "
";
}
$out .= "";
return $out;
}
add_shortcode('sfriendlinks','shortcode_friend_link_simple');
function shortcode_friend_link_simple($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$content = trim(strip_tags($content));
$entries = explode("\n" , $content);
$shuffle = isset( $attr['shuffle'] ) ? $attr['shuffle'] : 'false';
if ($shuffle == "true"){
mt_srand();
$group_start = 0;
foreach ($entries as $index => $value){
$now = explode("|" , $value);
if ($now[0] == 'category'){
echo ($index-1).",".$group_start." | ";
for ($i = $index - 1; $i >= $group_start; $i--){
echo $i."#";
$tar = mt_rand($group_start , $i);
$tmp = $entries[$tar];
$entries[$tar] = $entries[$i];
$entries[$i] = $tmp;
}
$group_start = $index + 1;
}
}
for ($i = count($entries) - 1; $i >= $group_start; $i--){
$tar = mt_rand($group_start , $i);
$tmp = $entries[$tar];
$entries[$tar] = $entries[$i];
$entries[$i] = $tmp;
}
}
$row_tag_open = False;
$out = "";
foreach($entries as $index => $value){
$now = explode("|" , $value);
if ($now[0] == 'category'){
if ($row_tag_open == True){
$row_tag_open = False;
$out .= "";
}
$out .= "" . $now[1] . "";
}
if ($now[0] == 'link'){
if ($row_tag_open == False){
$row_tag_open = True;
$out .= "";
}
$out .= "
";
if (!ctype_space($now[3]) && $now[3] != '' && isset($now[3])){
$out .= "" . $now[3] . "
";
}else{
/*$out .= "
";*/
}
$out .= " 前往
";
}
}
if ($row_tag_open == True){
$row_tag_open = False;
$out .= "";
}
$out .= "";
return $out;
}
add_shortcode('timeline','shortcode_timeline');
function shortcode_timeline($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$content = trim(strip_tags($content));
$entries = explode("\n" , $content);
$out = "";
foreach($entries as $index => $value){
$now = explode("|" , $value);
$now[0] = str_replace("/" , "" , $now[0]);
$out .= "
" . $now[0] . "
";
if ($now[1] != ''){
$out .= " " . $now[1] . "";
}
$out .= " ";
foreach($now as $index => $value){
if ($index < 2){
continue;
}
if ($index > 2){
$out .= "";
}
$out .= $value;
}
$out .= "
";
}
$out .= "";
return $out;
}
add_shortcode('hidden','shortcode_hidden');
add_shortcode('spoiler','shortcode_hidden');
function shortcode_hidden($attr,$content=""){
$content = shortcode_content_preprocess($attr, $content);
$out = "";
return $out;
}
add_shortcode('github','shortcode_github');
function shortcode_github($attr,$content=""){
$github_info_card_id = mt_rand(1000000000 , 9999999999);
$author = isset( $attr['author'] ) ? $attr['author'] : '';
$project = isset( $attr['project'] ) ? $attr['project'] : '';
$getdata = isset( $attr['getdata'] ) ? $attr['getdata'] : 'frontend';
$size = isset( $attr['size'] ) ? $attr['size'] : 'full';
$description = "";
$stars = "";
$forks = "";
if ($getdata == "backend"){
set_error_handler(function($errno, $errstr, $errfile, $errline, $errcontext) {
if (error_reporting() === 0) {
return false;
}
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
});
try{
$contexts = stream_context_create(
array(
'http' => array(
'method'=>"GET",
'header'=>"User-Agent: ArgonTheme\r\n"
)
)
);
$json = file_get_contents("https://api.github.com/repos/" . $author . "/" . $project, false, $contexts);
if (empty($json)){
throw new Exception("");
}
$json = json_decode($json);
$description = esc_html($json -> description);
if (!empty($json -> homepage)){
$description .= esc_html(" " . $json -> homepage . "");
}
$stars = $json -> stargazers_count;
$forks = $json -> forks_count;
}catch (Exception $e){
$getdata = "frontend";
}
restore_error_handler();
}
$out = "";
$out .= "";
$out .= "";
$out .= "
";
$out .= "
";
return $out;
}
add_shortcode('video','shortcode_video');
function shortcode_video($attr,$content=""){
$url = isset( $attr['mp4'] ) ? $attr['mp4'] : '';
$url = isset( $attr['url'] ) ? $attr['url'] : $url;
$width = isset( $attr['width'] ) ? $attr['width'] : '';
$height = isset( $attr['height'] ) ? $attr['height'] : '';
$autoplay = isset( $attr['autoplay'] ) ? $attr['autoplay'] : 'false';
$out = "";
return $out;
}
add_shortcode('hide_reading_time','shortcode_hide_reading_time');
function shortcode_hide_reading_time($attr,$content=""){
return "";
}
add_shortcode('post_time','shortcode_post_time');
function shortcode_post_time($attr,$content=""){
$format = isset( $attr['format'] ) ? $attr['format'] : 'Y-n-d G:i:s';
return get_the_time($format);
}
add_shortcode('post_modified_time','shortcode_post_modified_time');
function shortcode_post_modified_time($attr,$content=""){
$format = isset( $attr['format'] ) ? $attr['format'] : 'Y-n-d G:i:s';
return get_the_modified_time($format);
}
add_shortcode('noshortcode','shortcode_noshortcode');
function shortcode_noshortcode($attr,$content=""){
return $content;
}
//Reference Footnote
add_shortcode('ref','shortcode_ref');
$post_references = array();
$post_reference_keys_first_index = array();
$post_reference_contents_first_index = array();
function argon_get_ref_html($content, $index, $subIndex){
$index++;
return "[" . $index . "]";
}
function shortcode_ref($attr,$content=""){
global $post_references;
global $post_reference_keys_first_index;
global $post_reference_contents_first_index;
$content = preg_replace(
'/(.*?)<\/p>/is',
'$1',
$content
);
$content = wp_kses($content, array(
'a' => array(
'href' => array(),
'title' => array(),
'target' => array()
),
'br' => array(),
'em' => array(),
'strong' => array(),
'b' => array(),
'sup' => array(),
'sub' => array(),
'small' => array()
));
if (isset($attr['id'])){
if (isset($post_reference_keys_first_index[$attr['id']])){
$post_references[$post_reference_keys_first_index[$attr['id']]]['count']++;
}else{
array_push($post_references, array('content' => $content, 'count' => 1));
$post_reference_keys_first_index[$attr['id']] = count($post_references) - 1;
}
$index = $post_reference_keys_first_index[$attr['id']];
return argon_get_ref_html($post_references[$index]['content'], $index, $post_references[$index]['count']);
}else{
if (isset($post_reference_contents_first_index[$content])){
$post_references[$post_reference_contents_first_index[$content]]['count']++;
$index = $post_reference_contents_first_index[$content];
return argon_get_ref_html($post_references[$index]['content'], $index, $post_references[$index]['count']);
}else{
array_push($post_references, array('content' => $content, 'count' => 1));
$post_reference_contents_first_index[$content] = count($post_references) - 1;
$index = count($post_references) - 1;
return argon_get_ref_html($post_references[$index]['content'], $index, $post_references[$index]['count']);
}
}
}
function get_reference_list(){
global $post_references;
if (count($post_references) == 0){
return "";
}
$res = "
";
$res .= "" . (get_option('argon_reference_list_title') == "" ? __('参考', 'argon') : get_option('argon_reference_list_title')) . "
";
$res .= "";
foreach ($post_references as $index => $ref) {
$res .= "- ";
if ($ref['count'] == 1){
$res .= "^";
}else{
$res .= "^";
for ($i = 1, $j = 'a'; $i <= $ref['count']; $i++, $j++){
$res .= "" . $j . "";
}
}
$res .= "" . $ref['content'] . "";
$res .= "";
$res .= "
";
}
$res .= "
";
$res .= "";
return $res;
}
//TinyMce 按钮
function argon_tinymce_extra_buttons(){
if(!current_user_can('edit_posts') && !current_user_can('edit_pages')){
return;
}
if(get_user_option('rich_editing') == 'true'){
add_filter('mce_external_plugins', 'argon_tinymce_add_plugin');
add_filter('mce_buttons', 'argon_tinymce_register_button');
add_editor_style($GLOBALS['assets_path'] . "/assets/tinymce_assets/tinymce_editor_codeblock.css");
}
}
add_action('init', 'argon_tinymce_extra_buttons');
function argon_tinymce_register_button($buttons){
array_push($buttons, "|", "codeblock");
array_push($buttons, "|", "label");
array_push($buttons, "", "checkbox");
array_push($buttons, "", "progressbar");
array_push($buttons, "", "alert");
array_push($buttons, "", "admonition");
array_push($buttons, "", "collapse");
array_push($buttons, "", "timeline");
array_push($buttons, "", "github");
array_push($buttons, "", "video");
array_push($buttons, "", "hiddentext");
return $buttons;
}
function argon_tinymce_add_plugin($plugins){
$plugins['codeblock'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['label'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['checkbox'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['progressbar'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['alert'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['admonition'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['collapse'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['timeline'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['github'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['video'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
$plugins['hiddentext'] = get_bloginfo('template_url') . '/assets/tinymce_assets/tinymce_btns.js';
return $plugins;
}
//主题选项页面
function themeoptions_admin_menu(){
/*后台管理面板侧栏添加选项*/
add_menu_page(__("Argon 主题设置", 'argon'), __("Argon 主题选项", 'argon'), 'edit_theme_options', basename(__FILE__), 'themeoptions_page');
}
include_once(get_template_directory() . '/settings.php');
/*主题菜单*/
add_action('init', 'init_nav_menus');
function init_nav_menus(){
register_nav_menus( array(
'toolbar_menu' => __('顶部导航', 'argon'),
'leftbar_menu' => __('左侧栏菜单', 'argon'),
'leftbar_author_links' => __('左侧栏作者个人链接', 'argon'),
'leftbar_friend_links' => __('左侧栏友情链接', 'argon')
));
}
//隐藏 admin 管理条
//show_admin_bar(false);
/*说说*/
add_action('init', 'init_shuoshuo');
function init_shuoshuo(){
$labels = array(
'name' => __('说说', 'argon'),
'singular_name' => __('说说', 'argon'),
'add_new' => __('发表说说', 'argon'),
'add_new_item' => __('发表说说', 'argon'),
'edit_item' => __('编辑说说', 'argon'),
'new_item' => __('新说说', 'argon'),
'view_item' => __('查看说说', 'argon'),
'search_items' => __('搜索说说', 'argon'),
'not_found' => __('暂无说说', 'argon'),
'not_found_in_trash' => __('没有已遗弃的说说', 'argon'),
'parent_item_colon' => '',
'menu_name' => __('说说', 'argon')
);
$args = array(
'labels' => $labels,
'public' => true,
'publicly_queryable' => true,
'show_ui' => true,
'show_in_menu' => true,
'exclude_from_search' => true,
'query_var' => true,
'rewrite' => array(
'slug' => 'shuoshuo',
'with_front' => false
),
'capability_type' => 'post',
'has_archive' => false,
'hierarchical' => false,
'menu_position' => null,
'menu_icon' => 'dashicons-format-quote',
'supports' => array('editor', 'author', 'title', 'custom-fields', 'comments')
);
register_post_type('shuoshuo', $args);
}
function argon_get_search_post_type_array(){
$search_filters_type = get_option("argon_search_filters_type", "*post,*page,shuoshuo");
$search_filters_type = explode(',', $search_filters_type);
if (!isset($_GET['post_type'])) {
$default = array_filter($search_filters_type, function ($str) { return $str[0] == '*'; });
$default = array_map(function ($str) { return substr($str, 1) ;}, $default);
return $default;
}
$search_filters_type = array_map(function ($str) { return $str[0] == '*' ? substr($str, 1) : $str; }, $search_filters_type);
$post_type = explode(',', $_GET['post_type']);
$arr = array();
foreach ($search_filters_type as $type) {
if (in_array($type, $post_type)) {
array_push($arr, $type);
}
}
if (count($arr) == 0) {
array_push($arr, 'none');
}
return $arr;
}
function search_filter($query) {
if (!$query -> is_search || is_admin()) {
return $query;
}
if (get_option('argon_enable_search_filters', 'true') == 'false'){
return $query;
}
$query -> set('post_type', argon_get_search_post_type_array());
return $query;
}
add_filter('pre_get_posts', 'search_filter');
/*恢复链接管理器*/
add_filter('pre_option_link_manager_enabled', '__return_true');
/*登录界面 CSS*/
function argon_login_page_style() {
wp_enqueue_style("argon_login_css", $GLOBALS['assets_path'] . "/login.css", null, $GLOBALS['theme_version']);
}
if (get_option('argon_enable_login_css') == 'true'){
add_action('login_head', 'argon_login_page_style');
}