-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfunctions.php
executable file
·913 lines (841 loc) · 33.8 KB
/
functions.php
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
<?php
//以下三个Define已优化到最佳
define('PUOCK_ABS_DIR', get_template_directory());
define('PUOCK_ABS_URI', get_template_directory_uri());
define('PUOCK_CUR_VER_STR', '3.0.0');
const PUOCK = 'puock';
const PUOCK_OPT = 'puock_options';
$puock_colors_name = ['primary', 'danger', 'info', 'success', 'warning', 'dark', 'secondary'];
include(PUOCK_ABS_DIR . '/vendor/autoload.php');
do_action('qm/start', 'Reg_PHPFile');
//这个include格外慢
include(PUOCK_ABS_DIR . '/inc/fun/core.php');
do_action('qm/stop', 'Reg_PHPFile');
include(PUOCK_ABS_DIR . '/gutenberg/index.php');
if (pk_is_checked('comment_ip_fix')) {
/**
* 评论IP重写(前端有代理)
*
* @return string 从XFF中获取到的IP
* @author lvshujun
* @date 2024-03-20
*/
function pk_pre_comment_ip_XFF()
{
return $_SERVER['HTTP_X_FORWARDED_FOR'];
}
add_filter('pre_comment_user_ip', 'pk_pre_comment_ip_XFF');
}
//去除感谢使用wordpress创作
if (pk_is_checked('hide_footer_wp_t')) {
function my_admin_footer_text()
{
return '';
}
function my_update_footer()
{
return '';
}
function annointed_admin_bar_remove()
{
global $wp_admin_bar;
$wp_admin_bar->remove_menu('wp-logo');
}
add_action('wp_before_admin_bar_render', 'annointed_admin_bar_remove', 0);
add_filter('admin_footer_text', 'my_admin_footer_text', 10);
add_filter('update_footer', 'my_update_footer', 50);
}
//禁用5.0古登堡编辑器
if (pk_is_checked('stop5x_editor')) {
add_filter('use_block_editor_for_post', '__return_false');
remove_action('wp_enqueue_scripts', 'wp_common_block_scripts_and_styles');
function remove_global_styles_and_svg_filters()
{
remove_action('wp_enqueue_scripts', 'wp_enqueue_global_styles');
remove_action('wp_body_open', 'wp_global_styles_render_svg_filters');
}
add_action('init', 'remove_global_styles_and_svg_filters');
}
//区块小工具
if (!pk_is_checked('use_widgets_block')) {
pk_off_widgets_block();
}
//获取评论等级
function pk_the_author_class_out($count)
{
if ($count <= 0) {
return '';
}
switch ($count) {
case $count >= 1 && $count < 20:
$level = 1;
break;
case $count >= 20 && $count < 40:
$level = 2;
break;
case $count >= 40 && $count < 60:
$level = 3;
break;
case $count >= 60 && $count < 80:
$level = 4;
break;
case $count >= 120 && $count < 120:
$level = 5;
break;
case $count >= 140 && $count < 140:
$level = 6;
break;
case $count >= 160 && $count < 160:
$level = 7;
break;
default:
return '';
}
return '<span class="t-sm c-sub"><i class="fa-regular fa-gem mr-1"></i>' . __('评论达人', PUOCK) . ' LV.' . $level . '</span>';
}
function pk_the_author_class($echo = true, $in_comment = null)
{
global $wpdb, $comment;
if (!$comment) {
$comment = $in_comment;
}
if ($comment->user_id == '1') {
$res = '<span class="t-sm text-danger"><i class="fa-regular fa-gem mr-1"></i>' . __('博主', PUOCK) . '</span>';
} else {
$comment_author_email = $comment->comment_author_email;
$cache_key = sprintf(PKC_AUTHOR_COMMENTS, md5($comment_author_email));
$author_count = pk_cache_get($cache_key);
if (!$author_count) {
$query = $wpdb->prepare("SELECT count(1) as c FROM $wpdb->comments WHERE comment_author_email = %s", $comment_author_email);
$author_count = $wpdb->get_results($query)[0]->c;
pk_cache_set($cache_key, $author_count);
}
$res = pk_the_author_class_out($author_count);
}
if (!$echo) {
return $res;
}
echo $res;
}
//获取Gravatar头像
function pk_get_gravatar($email, $echo = true)
{
$link = get_avatar_url($email);
if (!$echo) {
return $link;
}
echo $link;
}
//获取文章分类链接
function get_post_category_link($class = '', $icon = '', $cid = null, $default = null, $index = 0)
{
return get_post_category_link_exec(false, $class, $icon, $cid, $default, $index);
}
function get_post_category_link_exec($all = true, $class = '', $icon = '', $cid = null, $default = null, $index = 0)
{
global $cat;
if ($default == null) {
$default = __('无分类', PUOCK);
}
if ($cid != null) {
$cate = get_category($cid);
if ($cate != null) {
return '<a ' . pk_link_target(false) . ' class="' . $class . '" href="' . get_category_link($cate) . '">' . $icon . $cate->name . '</a>';
}
} else {
$cats = get_the_category();
if (count($cats) > 0) {
if ($all) {
$out = "";
foreach ($cats as $cate) {
$out .= '<a ' . pk_link_target(false) . ' class="' . $class . ' mr5" href="' . get_category_link($cate) . '"><i class="ift kbk-category"></i> ' . $icon . $cate->name . '</a> ';
}
$out = mb_substr($out, 0, mb_strlen($out) - 1);
return $out;
} else {
if (!is_category()) {
$cate = $cats[0];
} else {
$cate = get_category($cat);
}
return '<a ' . pk_link_target(false) . ' class="' . $class . '" href="' . get_category_link($cate) . '"><i class="ift kbk-category"></i> ' . $icon . $cate->name . '</a>';
}
}
}
return '<a class="' . $class . '" href="javascript:void(0)">' . $icon . $default . '</a>';
}
//获取文章标签
function get_post_tags($class = '', $item_class = '')
{
global $puock_colors_name;
$tags = get_the_tags();
$out = '';
if ($tags && count($tags) > 0) {
$out .= '<div class="' . $class . '">';
foreach ($tags as $tag) {
// $color_index = mt_rand(0, count($puock_colors_name) - 1);
$out .= '<a href="' . get_tag_link($tag) . '" class="pk-badge pk-badge-sm mr5 ' . $item_class . '"><i class="fa-solid fa-tag"></i> ' . $tag->name . '</a>';
}
$out .= '</div>';
} else {
//
}
return $out;
}
/**
* XX天以前
* @author 吕舒君
* @date 2020-04-15T09:38:39+0800
* @copyright 吕舒君 2020
* @param integer $ptime 绝对时间
* @return string 输出相对时间
*/
function pk_get_post_date()
{
$ptime = get_post_time();
//注意时间的时区问题
$etime = current_time('timestamp') - $ptime;
if ($etime < 1) {
return '刚刚';
}
$interval = array(
12 * 30 * 24 * 60 * 60 => '年前'.' (' . date('Y年m月d日', $ptime) . ')',
30 * 24 * 60 * 60 => '个月前'.' (' . date('m月d日', $ptime) . ')',
7 * 24 * 60 * 60 => '周前'.' (' . date('m月d日', $ptime) . ')',
24 * 60 * 60 => '天前',
60 * 60 => '小时前',
60 => '分钟前',
1 => '秒前',
);
foreach ($interval as $secs => $str) {
$d = $etime / $secs;
if ($d >= 1) {
$r = round($d);
echo $r . $str;
return;
}
}
}
//获取随机的bootstrap的颜色表示
function pk_get_color_tag($ex = array())
{
global $puock_colors_name;
while (true) {
$c = $puock_colors_name[mt_rand(0, count($puock_colors_name) - 1)];
if (!in_array($c, $ex)) {
return $c;
}
}
}
function get_smiley_codes()
{
//todo 本地化翻译
return array(
":?:" => "疑问",
":razz:" => "调皮",
":sad:" => "难过",
":evil:" => "抠鼻",
":naughty:" => "顽皮",
":!:" => "吓",
":smile:" => "微笑",
":oops:" => "憨笑",
":neutral:" => "亲亲",
":cry:" => "大哭",
":mrgreen:" => "呲牙",
":grin:" => "坏笑",
":eek:" => "惊讶",
":shock:" => "发呆",
":???:" => "撇嘴",
":cool:" => "酷",
":lol:" => "偷笑",
":mad:" => "咒骂",
":twisted:" => "发怒",
":roll:" => "白眼",
":wink:" => "鼓掌",
":idea:" => "想法",
":despise:" => "蔑视",
":celebrate:" => "庆祝",
":watermelon:" => "西瓜",
":xmas:" => "圣诞",
":warn:" => "警告",
":rainbow:" => "彩虹",
":loveyou:" => "爱你",
":love:" => "爱",
":beer:" => "啤酒",
);
}
function get_smiley_image($key)
{
$imgKey = mb_substr($key, 1, mb_strlen($key) - 2);
if ($imgKey == '?') {
$imgKey = 'doubt';
}
if ($imgKey == '!') {
$imgKey = 'scare';
}
if ($imgKey == '???') {
$imgKey = 'bz';
}
return $imgKey;
}
function custom_smilies_src($old, $img)
{
return get_stylesheet_directory_uri() . '/assets/img/smiley/' . $img;
}
add_filter('smilies_src', 'custom_smilies_src', 10, 2);
function puock_twemoji_smiley()
{
global $wpsmiliestrans;
if (!get_option('use_smilies'))
return;
$wpsmiliestrans = array();
foreach (get_smiley_codes() as $key => $val) {
$wpsmiliestrans[$key] = get_smiley_image($key) . '.png';
}
return $wpsmiliestrans;
}
add_action('init', 'puock_twemoji_smiley', 3);
function get_wpsmiliestrans()
{
global $wpsmiliestrans, $output;
if (!is_array($wpsmiliestrans)) {
$wpsmiliestrans = array();
}
$wpsmilies = array_unique($wpsmiliestrans);
foreach ($wpsmilies as $alt => $src_path) {
$output .= '<a class="add-smily" data-smilies="' . $alt . '"><img src="' . get_bloginfo('template_directory') . '/assets/img/smiley/' . rtrim($src_path, "png") . 'png" /></a>';
}
return $output;
}
add_action('media_buttons', 'smilies_custom_button');
function smilies_custom_button($context)
{
echo '<a id="insert-smiley-button" style="position:relative" class="button"
title="' . __('添加表情', PUOCK) . '" data-editor="content" href="javascript:;">
<span>' . __('添加表情', PUOCK) . '</span>
</a><div id="insert-smiley-wrap" class="pk-media-wrap" style="display: none">' . get_wpsmiliestrans() . '</div>';
}
function get_post_images($_post = null)
{
global $post;
if ($_post != null) {
$post = $_post;
}
$post_id = $post->ID;
// 如果有封面图取封面图
if (has_post_thumbnail()) {
$res = get_the_post_thumbnail_url($post, 'large');
if ($res != null) {
return $res;
}
}
if ($post_id == null && $post) {
$content = $post->post_content;
} else {
$content = get_post($post_id)->post_content;
}
preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $content, $matches);
if ($matches && $matches[1]) {
$res = $matches[1][0];
} else {
$res = get_stylesheet_directory_uri() . '/assets/img/random/' . mt_rand(1, 8) . '.jpg';
}
return $res;
}
/**
* 拼合类名
*
* @param string ...$class_names 原类名
* @return string 拼合后的字符串
* @author lvshujun
* @date 2024-03-20
*/
function pk_get_class_name(...$class_names) {
$output = '';
//遍历一下
foreach ($class_names as $name) {
if ($class_names !== '') {
$output .= $name . ' ';
}
}
//去除首尾多余空格
return trim($output);
}
/**
* 输出分页
*
* @param integer $pnum 显示页数
* @return void
* @author lvshujun
* @date 2024-03-19
*/
function pk_paging($pnum = 2)
{
if (is_singular()) {
return;
}
global $wp_query, $paged;
$max_page = $wp_query->max_num_pages;
if ($max_page == 1)
return;
echo '<div class="mt20 p-flex-s-right"><ul class="pagination">';
if (empty($paged))
$paged = 1;
echo '<li class="prev-page puock-bg">';
previous_posts_link('«');
echo '</li>';
if ($paged > $pnum + 1)
pk_echo_page_link(1);
if ($paged > $pnum + 2)
echo '<li class="omit">...</li>';
for ($i = $paged - $pnum; $i <= $paged + $pnum; $i++) {
if ($i > 0 && $i <= $max_page) {
if ($i == $paged) {
echo '<li><a class="cur">' . $i . '</a></li>';
} else {
pk_echo_page_link($i);
}
}
}
if ($paged < $max_page - $pnum - 1) {
echo '<li class="omit">...</li>';
pk_echo_page_link($max_page);
}
echo '<li class="next-page">';
next_posts_link('»');
echo '</li>';
echo '</ul></div>';
}
/**
* 生成页面链接,并输出
*
* @param int $i 页码
* @return void
* @author lvshujun
* @date 2024-03-19
*/
function pk_echo_page_link($i)
{
echo '<li><a href="' . esc_html(get_pagenum_link($i)) . '">' . $i . '</a></li>';
}
/**
* 输出SEO标题
*
* @return string SEO标题
* @author lvshujun
* @date 2024-03-19
*/
function pk_get_seo_title() {
// 用户定义的连接符
$pk_title_conn = ' ' . pk_get_option("title_conn") . ' ';
// 网站名称
$pk_blog_name = pk_get_web_title();
// 分页情况
$pk_paged_title = '';
if (get_query_var('paged')) {
$pk_paged_title = $pk_title_conn . '第' . get_query_var('paged') . '页';
}
// 获取SEO设置
$pk_custom_seo_title = pk_get_custom_seo()['title'] ?? '';
// 输出内容
$pk_title = '';
// 通用结尾
$pk_common_end = $pk_paged_title . $pk_title_conn . $pk_blog_name;
// 已经自定义标题
if (!empty($pk_custom_seo_title)) {
$pk_title .= $pk_custom_seo_title . $pk_common_end;
} else if (is_home()) {
$pk_description = pk_get_option('web_title_2');
if (!empty($pk_description)) {
$pk_title .= $pk_blog_name . $pk_paged_title . $pk_title_conn . $pk_description;
} else {
$pk_title .= $pk_blog_name . $pk_paged_title;
}
} else if (is_search()) {
$pk_title .= '搜索“' . $_REQUEST['s'] . '”的结果' . $pk_common_end;
} else if (is_single() || is_page()) {
$pk_title .= single_post_title('', false) . $pk_common_end;
} else if (is_year()) {
$pk_title .= get_the_time('Y年') . '的所有文章' . $pk_common_end;
} else if (is_month()) {
$pk_title .= get_the_time('m') . '的所有文章' . $pk_common_end;
} else if (is_day()) {
$pk_title .= get_the_time('Y年m月d日') . '的所有文章' . $pk_common_end;
} else if (is_author()) {
$pk_title .= '作者:' . get_the_author() . $pk_common_end;
} else if (is_category()) {
$pk_title .= single_cat_title('', false) . $pk_common_end;
} else if (is_tag()) {
$pk_title .= single_tag_title('', false) . $pk_common_end;
} else if (is_404()) {
$pk_title .= '你访问的资源不存在' . $pk_common_end;
} else {
$pk_title .= $pk_blog_name . $pk_paged_title;
}
return $pk_title;
}
/**
* SEO输出方法
*
* @return void
* @author lvshujun
* @date 2024-03-26
*/
function pk_seo() {
if (is_home() || is_front_page()) {
echo pk_seo_home();
} elseif (is_single() || is_page()) {
echo pk_seo_post();
}
}
/**
* 返回主页的SEO信息
*
* @return string SEO
* @author lvshujun
* @date 2024-03-19
*/
function pk_seo_home() {
//非首页返回空
if (!is_home() && !is_front_page()) return '';
//未启用返回空
if (!pk_is_checked('seo_open',true)) return '';
//站点标题
$pk_site_title = get_bloginfo('name');
//站点简介
$pk_site_desc = pk_get_option('description');
//站点链接
$pk_site_url = get_bloginfo('url');
//站点关键词
$pk_site_keyword = pk_get_option('keyword');
//连接字符串
$pk_seo_output = '
<meta name="keywords" content="' . $pk_site_keyword . '"/>
<meta name="description" content="' . $pk_site_desc . '"/>
<link rel="canonical" href="' . home_url() . '">
<!-- og meta -->
<meta property="og:type" value="website" />
<meta property="og:title" value="' . $pk_site_title . '" />
<meta property="og:description" value="' . $pk_site_desc . '" />
<meta property="og:url" value="' . $pk_site_url . '" />
<!-- twitter meta -->
<meta name="twitter:card" value="summary_large_image" />
<meta name="twitter:title" value="' . $pk_site_title . '" />
<meta name="twitter:description" value="' . $pk_site_desc . '" />';
return $pk_seo_output;
}
/**
* 返回文章页的SEO信息
*
* @return string SEO
* @author lvshujun
* @date 2024-03-26
*/
function pk_seo_post() {
//是首页不调用
if (is_home() || is_front_page()) return '';
//未启用返回空
if (!pk_is_checked('seo_open',true)) return '';
global $post;
//取关键词段
$pk_seo_keywords = '';
$pk_custom_seo_keywords = get_post_meta($post->ID, "seo_keywords", true);
//获取自定义关键词
if ($pk_custom_seo_keywords != null && !empty(trim($pk_custom_seo_keywords))) {
//直接使用已定义的关键词
echo trim($pk_custom_seo_keywords);
} else {
//获取tag作为关键词
$pk_tag_lists = get_the_tags();
if ($pk_tag_lists != null && count($pk_tag_lists) > 0) {
foreach (get_the_tags() as $pk_tag_item) {
$pk_seo_keywords .= $pk_tag_item->name . ',';
};
//去除最后的逗号
$pk_seo_keywords = substr($pk_seo_keywords, 0, strlen($pk_seo_keywords) - 1);
}
}
//取简介
$pk_seo_desc = get_post_meta($post->ID, "seo_desc", true);
if ($pk_seo_desc != null && !empty(trim($pk_seo_desc))) {
//选取自定义SEO
$pk_seo_desc = trim($pk_seo_desc);
} else {
//裁剪获得简介
$pk_seo_desc = wp_trim_words(do_shortcode(get_the_content($post->ID)), 147, '...');
}
$pk_seo_output = '
<meta name="keywords" content="' . $pk_seo_keywords . '" />
<meta name="description" content="' . $pk_seo_desc . '"/>
<link rel="canonical" href="' . get_permalink() . '">
<!-- og meta -->
<meta property="og:type" value="article" />
<meta property="og:title" value="'. get_the_title() . '" />
<meta property="og:description" value="' . $pk_seo_desc . '" />
<meta property="og:article:author" value="' . get_the_author_meta('display_name', $post->post_author) . '" />
<meta property="og:article:published_time" value="' . get_the_time() . '" />
<meta property="og:image" value="' . get_post_images() . '" />
<meta property="og:url" value="' . get_permalink() . '" />
<!-- twitter meta -->
<meta name="twitter:card" value="summary_large_image" />
<meta name="twitter:title" value="'. get_the_title() . '" />
<meta name="twitter:description" value="' . $pk_seo_desc . '" />
<meta name="twitter:image" value="' . get_post_images() . '" />';
return $pk_seo_output;
}
/**
* 返回图标信息
*
* @return string
* @author lvshujun
* @date 2024-03-19
*/
function pk_icon_mate() {
//获取icon地址
$pk_icon = pk_get_option('favicon');
//未设置返回空
if ($pk_icon === '') return '';
//连接字符串
$str = '<link rel="shortcut icon" href="' . $pk_icon . '">
<link rel="apple-touch-icon" href="' . $pk_icon . '"/>';
return $str;
}
//获取面包屑导航
function pk_breadcrumbs()
{
global $cat;
$custom_seo_title = pk_get_custom_seo()['title'] ?? '';
$out = '<div id="breadcrumb" class="' . (pk_open_box_animated('animated fadeInUp', false)) . '">';
$out .= '<nav aria-label="breadcrumb">';
$out .= '<ol class="breadcrumb">';
$out .= '<li class="breadcrumb-item"><i class="ift kbk-home"></i> <a class="a-link" href="' . home_url() . '">' . __('首页', PUOCK) . '</a></li>';
if (is_single() || is_category()) {
$categorys = get_the_category();
if (count($categorys) <= 0 && is_single()) {
return false;
}
if (is_single()) {
$category = $categorys[0];
if ($category == null && is_category()) {
$category = get_category($cat);
}
$cats = get_category_parents($category->term_id, true, '');
} else {
$cats = get_category_parents($cat, true, '');
}
$cats = str_replace("<a", '<li class="breadcrumb-item"><i class="ift kbk-category"></i> <a class="a-link"', $cats);
$cats = str_replace("</a>", '</a></li>', $cats);
$out .= $cats;
if (is_single()) {
$out .= '<li class="breadcrumb-item active " aria-current="page"><i class="ift kbk-post"></i> ' . get_the_title() . '</li>';
} else if (is_category()) {
$out .= '<li class="breadcrumb-item active " aria-current="page">' . __('文章列表', PUOCK) . '</li>';
}
} else if (is_search()) {
$out .= '<li class="breadcrumb-item active " aria-current="page">' . (esc_html($_GET['s'])) . '</li>';
$out .= '<li class="breadcrumb-item active " aria-current="page">' . __('搜索结果', PUOCK) . '</li>';
} else if (is_author()) {
$out .= '<li class="breadcrumb-item active " aria-current="page">' . get_the_author_meta('nickname') . '</li>';
} else if (is_date()) {
$out .= '<li class="breadcrumb-item active " aria-current="page">' . get_the_date() . '</li>';
} else if (is_page()) {
global $post;
$out .= '<li class="breadcrumb-item active " aria-current="page">' . ($post->post_title) . '</li>';
} else if (is_tag()) {
$tag_name = single_tag_title('', false);
$out .= '<li class="breadcrumb-item active " aria-current="page">' . __('标签', PUOCK) . '</li>';
$out .= '<li class="breadcrumb-item active " aria-current="page">' . ($tag_name) . '</li>';
} else if (!empty($custom_seo_title)) {
$out .= '<li class="breadcrumb-item active " aria-current="page">' . $custom_seo_title . '</li>';
} else if (is_404()) {
$out .= '<li class="breadcrumb-item active " aria-current="page">' . __('你访问的资源不存在', PUOCK) . '</li>';
}
$out .= '</div></nav></ol>';
return $out;
}
//获取阅读数量
function pk_get_post_views()
{
if (function_exists('the_views')) {
echo the_views(null, false);
} else {
echo 0;
}
}
//字数统计
function count_words($text = null)
{
global $post;
if (empty($text)) {
$text = $post->post_content;
}
return mb_strlen(preg_replace('/\s/', '', html_entity_decode(strip_tags($text))), 'UTF-8');
}
//给文章内容添加灯箱
function light_box_text_replace($content)
{
$pattern = "/<a(.*?)href=('|\")([A-Za-z0-9\/_\.\~\:-]*?)(\.bmp|\.gif|\.jpg|\.jpeg|\.png)('|\")([^\>]*?)>/i";
$replacement = '<a$1href=$2$3$4$5$6 class="fancybox" data-no-instant target="_blank">';
$content = preg_replace($pattern, $replacement, $content);
return $content;
}
add_filter('the_content', 'light_box_text_replace', 99);
//给图片加上alt/title
function content_img_add_alt_title($content)
{
global $post;
preg_match_all('/<img (.*?)\/>/', $content, $images);
if (!is_null($images)) {
$title = $post->post_title;
foreach ($images[1] as $index => $value) {
$new_img = str_replace('<img', '<img title="' . $title . '" alt="' . $title . '"', $images[0][$index]);
$content = str_replace($images[0][$index], $new_img, $content);
}
}
return $content;
}
add_filter('the_content', 'content_img_add_alt_title', 99);
//加上bootstrap的表格class
function pk_bootstrap_table_class($content)
{
global $post;
preg_match_all('/<table.*?>[\s\S]*<\/table>/', $content, $tables);
if (!is_null($tables)) {
foreach ($tables[0] as $index => $value) {
$out = str_replace('<table', '<table class="table table-bordered puock-text"', $tables[0][$index]);
$content = str_replace($tables[0][$index], $out, $content);
}
}
return $content;
}
add_filter('the_content', 'pk_bootstrap_table_class', 99);
//初始化wp_style函数,以防止出现Invalid argument supplied for foreach()错误
function pk_init_wp_empty_style()
{
wp_enqueue_style('');
}
add_action('wp_enqueue_scripts', 'pk_init_wp_empty_style');
//引入自定义方法文件
require PUOCK_ABS_DIR . '/fun-custom.php';
//更新支持
function pk_update()
{
do_action('qm/start', 'Update');
$update_server = pk_get_option('update_server');
$check_period = pk_get_option('update_server_check_period');
if (empty($check_period) || !is_numeric($check_period)) {
$check_period = 6;
}
$current_theme_dir_name = basename(dirname(__FILE__));
include('update-checker/plugin-update-checker.php');
switch ($update_server) {
case 'github': {
$pkUpdateChecker = YahnisElsts\PluginUpdateChecker\v5\PucFactory::buildUpdateChecker(
'https://github.com/Licoy/wordpress-theme-puock',
__FILE__,
PUOCK,
$check_period
);
}
break;
case 'fastgit': {
$pkUpdateChecker = YahnisElsts\PluginUpdateChecker\v5\PucFactory::buildUpdateChecker(
'https://licoy.cn/go/puock-update.php?r=fastgit',
__FILE__,
PUOCK,
$check_period
);
}
break;
default: {
$pkUpdateChecker = YahnisElsts\PluginUpdateChecker\v5\PucFactory::buildUpdateChecker(
'https://licoy.cn/go/puock-update.php?r=worker',
__FILE__,
PUOCK,
$check_period
);
}
}
do_action('qm/stop', 'Update');
}
////WordPress 评论回复邮件通知代码 TODO 等待测试改进
//function pk_comment_mail_notify($comment_id)
//{
// $admin_notify = '1'; // admin 要不要收回复通知 ( '1'=要 ; '0'=不要 )
// $admin_email = get_bloginfo('admin_email');
// $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
// $comment = get_comment($comment_id);
// $parent_id = $comment->comment_parent ? $comment->comment_parent : '';
// $spam_confirmed = $comment->comment_approved;
// global $wpdb;
// $comments_waiting = $wpdb->get_var("SELECT count(comment_ID) FROM $wpdb->comments WHERE comment_approved = '0'");
// if (($parent_id != '') && ($spam_confirmed != 'spam') && ($to != $admin_email)) {
// $wp_email = 'no-reply@' . preg_replace('#^www\.#', '', strtolower($_SERVER['SERVER_NAME']));
// $to = trim(get_comment($parent_id)->comment_author_email);
// $subject = '您在 [' . $blogname . ']' . ' 中的留言有了新回复!';
// $message = '
// <div style="background-color:white;border-left: 2px solid #555555;box-shadow:0 1px 3px #AAAAAA;line-height:180%;padding:0 15px 12px;width:500px;margin:50px auto;color:#555555;font-family:"Source Sans Pro","Hiragino Sans GB","Microsoft Yahei",SimSun,Helvetica,Arial,Sans-serif,monospace;font-size:14px;">
// <h2 style="border-bottom:1px solid #DDD;font-size:14px;font-weight:normal;padding:13px 0 10px 8px;">
// <span style="color: #409eff;font-weight: bold;">> </span>
// 您在 <a style="text-decoration:none; color:#409eff;font-weight:600;" href="' . home_url() . '">' . $blogname . '</a> 的留言有回复啦!
// </h2>
// <div style="font-size: 14px; color: #777; padding: 0 10px; margin-top: 18px;">
// <p><b>' . trim(get_comment($parent_id)->comment_author) . '</b> 同学,您曾在文章<b>《' . get_the_title($comment->comment_post_ID) . '》</b>上发表评论:</p>
// <p style="background: #F5F5F5; padding: 10px 15px; margin: 18px 0;">' . nl2br(strip_tags(get_comment($parent_id)->comment_content)) . '</p>
// <p>' . '<b>' . trim($comment->comment_author) . '</b>' . ' 给您的回复如下:</p>
// <p style="background: #F5F5F5; padding: 10px 15px; margin: 18px 0;">' . nl2br(strip_tags($comment->comment_content)) . '</p>
// <p>您可以点击 <a style="text-decoration:none; color:#409eff" href="' . htmlspecialchars(get_comment_link($parent_id)) . '">查看完整的回复內容</a>,也欢迎再次光临 <a style="text-decoration:none; color:#409eff"
// href="' . home_url() . '">' . $blogname . '</a>。祝您生活愉快!</p>
// <p style="padding-bottom: 15px;">(此邮件由系统自动发出,请勿直接回复!)</p>
// </div>
// </div>';
// $from = "From: \"" . get_option('blogname') . "\" <$wp_email>";
// $headers = "$from\nContent-Type: text/html; charset=" . get_option('blog_charset') . "\n";
// wp_mail($to, $subject, $message, $headers);
// }
// //文章有新评论时通知管理员
// if ($parent_id == '' && (trim($comment->comment_author_email) != trim($admin_email)) && ($spam_confirmed != 'spam') && ($comment->comment_approved != 0)) {
// $wp_email = '';
// $subject = '在「' . $blogname . '」的文章《' . get_the_title($comment->comment_post_ID) . '》一文有新的评论';
// $message = '
// <div style="background-color:white;border-left: 2px solid #555555;box-shadow:0 1px 3px #AAAAAA;line-height:180%;padding:0 15px 12px;width:500px;margin:50px auto;color:#555555;font-family:"Source Sans Pro","Hiragino Sans GB","Microsoft Yahei",SimSun,Helvetica,Arial,Sans-serif,monospace;font-size:14px;">
// <h2 style="border-bottom:1px solid #DDD;font-size:14px;font-weight:normal;padding:13px 0 10px 8px;">
// <span style="color: #409eff;font-weight: bold;">> </span>
// <a style="text-decoration:none;color: #409eff;" href="' . home_url() . '">' . $blogname . '</a> 博客有新的评论啦!
// </h2>
// <div style="padding:0 12px 0 12px;margin-top:18px;">
// <p><b>' . $comment->comment_author . '</b> 同学在文章<b>《' . get_the_title($comment->comment_post_ID) . '》</b>上发表评论:</p>
// <p style="background-color: #f5f5f5;border: 0px solid #DDD;padding: 10px 15px;margin:18px 0;">' . $comment->comment_content . '</p>
// <p>您可以点击 <a style="text-decoration:none; color:#409eff" href="' . htmlspecialchars(get_comment_link($parent_id)) . '">查看完整的回复內容</a>,也欢迎再次光临 <a style="text-decoration:none; color:#409eff" href="' . home_url() . '">' . $blogname . '</a>。祝您生活愉快!</p>
// </div>
// </div>';
// $headers = "Content-Type: text/html; charset=" . get_option('blog_charset') . "\n";
// wp_mail($admin_email, $subject, $message, $headers);
// }
// //评论需要审核时通知
// if ($parent_id == '' && (trim($comment->comment_author_email) != trim($admin_email)) && ($spam_confirmed != 'spam') && ($spam_confirmed != 'trash') && ($comment->comment_approved == 0)) {
// $wp_email = '';
// $subject = '在「' . $blogname . '」的文章《' . get_the_title($comment->comment_post_ID) . '》中有新的评论需要审核';
// $message = '
// <div style="background-color:white;border-left: 2px solid #555555;box-shadow:0 1px 3px #AAAAAA;line-height:180%;padding:0 15px 12px;width:500px;margin:50px auto;color:#555555;font-family:"Source Sans Pro","Hiragino Sans GB","Microsoft Yahei",SimSun,Helvetica,Arial,Sans-serif,monospace;font-size:14px;">
// <h2 style="border-bottom:1px solid #DDD;font-size:14px;font-weight:normal;padding:13px 0 10px 8px;">
// <span style="color: #409eff;font-weight: bold;">> 「 </span>
// <a style="text-decoration:none;color: #409eff;" href="' . home_url() . '">' . $blogname . '」</a> 中有一条评论等待您的审核
// </h2>
// <div style="padding:0 12px 0 12px;margin-top:18px;">
// <p><b>' . $comment->comment_author . '</b> 同学在文章<b><a style="text-decoration:none;color: #409eff;" href="' . get_permalink($comment->comment_post_ID) . '">《' . get_the_title($comment->comment_post_ID) . '》</a></b>上发表评论:</p>
// <p style="background-color: #f5f5f5;border: 0px solid #DDD;padding: 10px 15px;margin:18px 0;">' . $comment->comment_content . '</p>
// <p><a style="text-decoration:none;color: #007017;" href="' . admin_url("comment.php?action=approve&c={$comment_id}#wpbody-content") . '">[批准评论]</a> | <a style="text-decoration:none;color: #b32d2e;" href="' . admin_url("comment.php?action=trash&c={$comment_id}#wpbody-content") . '">[移至回收站]</a>。您还可以:<a style="text-decoration:none; color:#b32d2e" href="' . admin_url("comment.php?action=delete&c={$comment_id}#wpbody-content") . '">永久删除评论</a> | <a style="text-decoration:none;color: #b32d2e;" href="' . admin_url("comment.php?action=spam&c={$comment_id}#wpbody-content") . '">标记为垃圾评论</a>
// <p>当前有 ' . $comments_waiting . ' 条评论等待审核。请移步<a style="text-decoration:none;color: #409eff;" href="' . admin_url('edit-comments.php?comment_status=moderated#wpbody-content') . '">审核页面</a>来查看。</p>也欢迎再次光临 <a style="text-decoration:none; color:#409eff" href="' . home_url() . '">' . $blogname . '</a>。祝您生活愉快!</p>
// </div>
// </div>';
// $headers = "Content-Type: text/html; charset=" . get_option('blog_charset') . "\n";
// wp_mail($admin_email, $subject, $message, $headers);
// }
//}
//
//add_action('comment_post', 'pk_comment_mail_notify');
if (is_admin()) {
// 在线更新支持
pk_update();
}