This repository was archived by the owner on Mar 1, 2026. It is now read-only.
forked from chenshuo/coolshell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1194 lines (1151 loc) · 104 KB
/
index.html
File metadata and controls
1194 lines (1151 loc) · 104 KB
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
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!--[if IE 8]>
<html id="ie8" dir="ltr" lang="zh-CN"
prefix="og: https://ogp.me/ns#" >
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html dir="ltr" lang="zh-CN" prefix="og: https://ogp.me/ns#">
<!--<![endif]-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="profile" href="https://gmpg.org/xfn/11" />
<link rel="pingback" href="https://coolshell.cn/xmlrpc.php" />
<link rel="shortcut icon" href="/favicon.png">
<title>本站插件 | 酷 壳 - CoolShell</title>
<meta name="robots" content="noindex, nofollow, max-image-preview:large" />
<link rel="canonical" href="/plugins/comment-page-3#comments" />
<meta name="generator" content="All in One SEO (AIOSEO) 4.3.6.1 " />
<meta property="og:locale" content="zh_CN" />
<meta property="og:site_name" content="酷 壳 - CoolShell" />
<meta property="og:type" content="article" />
<meta property="og:title" content="本站插件 | 酷 壳 - CoolShell" />
<meta property="og:url" content="/plugins/comment-page-3#comments" />
<meta property="og:image" content="/wp-content/uploads/2020/04/mini.logo_.png" />
<meta property="og:image:secure_url" content="/wp-content/uploads/2020/04/mini.logo_.png" />
<meta property="og:image:width" content="306" />
<meta property="og:image:height" content="306" />
<meta property="article:published_time" content="2011-03-01T16:32:23+00:00" />
<meta property="article:modified_time" content="2020-07-17T14:22:34+00:00" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="本站插件 | 酷 壳 - CoolShell" />
<meta name="twitter:image" content="/wp-content/uploads/2020/04/mini.logo_.png" />
<script type="application/ld+json" class="aioseo-schema">
{"@context":"https:\/\/schema.org","@graph":[{"@type":"BreadcrumbList","@id":"https:\/\/coolshell.cn\/plugins#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/coolshell.cn\/#listItem","position":1,"item":{"@type":"WebPage","@id":"https:\/\/coolshell.cn\/","name":"\u4e3b\u9801","description":"\u4eab\u53d7\u7f16\u7a0b\u548c\u6280\u672f\u6240\u5e26\u6765\u7684\u5feb\u4e50 \u2013 https:\/\/coolshell.cn","url":"https:\/\/coolshell.cn\/"},"nextItem":"https:\/\/coolshell.cn\/plugins#listItem"},{"@type":"ListItem","@id":"https:\/\/coolshell.cn\/plugins#listItem","position":2,"item":{"@type":"WebPage","@id":"https:\/\/coolshell.cn\/plugins","name":"\u672c\u7ad9\u63d2\u4ef6","url":"https:\/\/coolshell.cn\/plugins"},"previousItem":"https:\/\/coolshell.cn\/#listItem"}]},{"@type":"Organization","@id":"https:\/\/coolshell.cn\/#organization","name":"\u9177\u58f3-CoolShell","url":"https:\/\/coolshell.cn\/","logo":{"@type":"ImageObject","url":"https:\/\/coolshell.cn\/wp-content\/uploads\/2020\/04\/mini.logo_.png","@id":"https:\/\/coolshell.cn\/#organizationLogo","width":306,"height":306},"image":{"@id":"https:\/\/coolshell.cn\/#organizationLogo"}},{"@type":"WebPage","@id":"https:\/\/coolshell.cn\/plugins#webpage","url":"https:\/\/coolshell.cn\/plugins","name":"\u672c\u7ad9\u63d2\u4ef6 | \u9177 \u58f3 - CoolShell","inLanguage":"zh-CN","isPartOf":{"@id":"https:\/\/coolshell.cn\/#website"},"breadcrumb":{"@id":"https:\/\/coolshell.cn\/plugins#breadcrumblist"},"datePublished":"2011-03-01T16:32:23+08:00","dateModified":"2020-07-17T14:22:34+08:00"},{"@type":"WebSite","@id":"https:\/\/coolshell.cn\/#website","url":"https:\/\/coolshell.cn\/","name":"\u9177 \u58f3 - CoolShell","description":"\u4eab\u53d7\u7f16\u7a0b\u548c\u6280\u672f\u6240\u5e26\u6765\u7684\u5feb\u4e50 - Coding Your Ambition","inLanguage":"zh-CN","publisher":{"@id":"https:\/\/coolshell.cn\/#organization"}}]}
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-X07ZBQJ84C"></script>
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link rel="alternate" type="application/rss+xml" title="酷 壳 - CoolShell » Feed" href="https://coolshell.cn/feed" />
<link rel="alternate" type="application/rss+xml" title="酷 壳 - CoolShell » 评论Feed" href="https://coolshell.cn/comments/feed" />
<link rel="alternate" type="application/rss+xml" title="酷 壳 - CoolShell » 本站插件评论Feed" href="/plugins/feed" />
<script type="f57a93f03fb1e1e286a33154-text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/coolshell.cn\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.2"}};
/*! This file is auto-generated */
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){p.clearRect(0,0,i.width,i.height),p.fillText(e,0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(t,0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(p&&p.fillText)switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s("\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!s("\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!s("\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!s("\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(e=t.source||{}).concatemoji?c(e.concatemoji):e.wpemoji&&e.twemoji&&(c(e.twemoji),c(e.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel="stylesheet" id="series_font-css" href="/wp-content/plugins/simple-post-series/inc/icomoon/style.css?ver=2.4" type="text/css" media="all" />
<link rel="stylesheet" id="wp-block-library-css" href="/wp-content/plugins/gutenberg/build/block-library/style.css?ver=15.7.0" type="text/css" media="all" />
<link rel="stylesheet" id="classic-theme-styles-css" href="/wp-includes/css/classic-themes.min.css?ver=6.2" type="text/css" media="all" />
<style id="global-styles-inline-css" type="text/css">
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
</style>
<link rel="stylesheet" id="wp-postratings-css" href="/wp-content/plugins/wp-postratings/css/postratings-css.css?ver=1.90.1" type="text/css" media="all" />
<link rel="stylesheet" id="wp-pagenavi-css" href="/wp-content/plugins/wp-pagenavi/pagenavi-css.css?ver=2.70" type="text/css" media="all" />
<link rel="stylesheet" id="bootstrap-css" href="/wp-content/themes/MyNisarg/css/bootstrap.css?ver=6.2" type="text/css" media="all" />
<link rel="stylesheet" id="nisarg-style-css" href="/wp-content/themes/MyNisarg/style.css?ver=6.2" type="text/css" media="all" />
<style id="nisarg-style-inline-css" type="text/css">
/* Color Scheme */
/* Accent Color */
a:active,
a:hover,
a:focus {
color: #009688;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
color: #009688;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #009688;
}
@media (min-width: 768px){
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
border-top: 4px solid #009688;
}
}
.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
background-color: #009688;
}
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
color: #009688;
}
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav > li > .dropdown-menu > li > a:focus {
color: #fff;
background-color: #009688;
}
.navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
background-color: #fff;
color: #009688;
}
@media (max-width: 767px) {
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
background-color: #009688;
color: #fff;
}
}
.sticky-post{
background: #009688;
color:white;
}
.entry-title a:hover,
.entry-title a:focus{
color: #009688;
}
.entry-header .entry-meta::after{
background: #009688;
}
.fa {
color: #009688;
}
.btn-default{
border-bottom: 1px solid #009688;
}
.btn-default:hover, .btn-default:focus{
border-bottom: 1px solid #009688;
background-color: #009688;
}
.nav-previous:hover, .nav-next:hover{
border: 1px solid #009688;
background-color: #009688;
}
.next-post a:hover,.prev-post a:hover{
color: #009688;
}
.posts-navigation .next-post a:hover .fa, .posts-navigation .prev-post a:hover .fa{
color: #009688;
}
#secondary .widget-title::after{
background-color: #009688;
content: "";
position: absolute;
width: 75px;
display: block;
height: 4px;
bottom: -15px;
}
#secondary .widget a:hover,
#secondary .widget a:focus{
color: #009688;
}
#secondary .widget_calendar tbody a {
background-color: #009688;
color: #fff;
padding: 0.2em;
}
#secondary .widget_calendar tbody a:hover{
background-color: #009688;
color: #fff;
padding: 0.2em;
}
</style>
<link rel="stylesheet" id="font-awesome-css" href="/wp-content/themes/MyNisarg/font-awesome/css/font-awesome.min.css?ver=6.2" type="text/css" media="all" />
<link rel="stylesheet" id="nisarggooglefonts-css" href="//fonts.googleapis.com/css?family=Lato:400,300italic,700|Source+Sans+Pro:400,400italic" type="text/css" media="all" />
<link rel="stylesheet" id="enlighterjs-css" href="/wp-content/plugins/enlighter/cache/enlighterjs.min.css?ver=0cuVQBPCj0viGB0" type="text/css" media="all" />
<script type="f57a93f03fb1e1e286a33154-text/javascript" src="/wp-includes/js/jquery/jquery.min.js?ver=3.6.3" id="jquery-core-js"></script>
<script type="f57a93f03fb1e1e286a33154-text/javascript" src="/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.0" id="jquery-migrate-js"></script>
<script type="f57a93f03fb1e1e286a33154-text/javascript" src="/wp-content/plugins/simple-post-series/autohide.js?ver=2.4" id="series-js"></script>
<!--[if lt IE 9]>
<script type='text/javascript' src='/wp-content/themes/MyNisarg/js/html5shiv.js?ver=3.7.3' id='html5shiv-js'></script>
<![endif]-->
<link rel="https://api.w.org/" href="https://coolshell.cn/wp-json/" /><link rel="alternate" type="application/json" href="https://coolshell.cn/wp-json/wp/v2/pages/3839" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://coolshell.cn/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="/wp-includes/wlwmanifest.xml" />
<meta name="generator" content="WordPress 6.2" />
<link rel="shortlink" href="https://coolshell.cn/?p=3839" />
<link rel="alternate" type="application/json+oembed" href="https://coolshell.cn/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcoolshell.cn%2Fplugins" />
<link rel="alternate" type="text/xml+oembed" href="https://coolshell.cn/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fcoolshell.cn%2Fplugins&format=xml" />
<script type="f57a93f03fb1e1e286a33154-text/javascript">
window._wp_rp_static_base_url = 'https://wprp.zemanta.com/static/';
window._wp_rp_wp_ajax_url = "https://coolshell.cn/wp-admin/admin-ajax.php";
window._wp_rp_plugin_version = '3.6.4';
window._wp_rp_post_id = '3839';
window._wp_rp_num_rel_posts = '6';
window._wp_rp_thumbnails = true;
window._wp_rp_post_title = '%E6%9C%AC%E7%AB%99%E6%8F%92%E4%BB%B6';
window._wp_rp_post_tags = [];
window._wp_rp_promoted_content = true;
</script>
<link rel="stylesheet" href="/wp-content/plugins/wordpress-23-related-posts-plugin/static/themes/vertical-m.css?version=3.6.4" />
<style type="text/css">
.site-header { background: #1d2b2d; }
</style>
</head>
<body class="page-template-default page page-id-3839 group-blog">
<link rel="stylesheet" id="nisarg-style-css" href="/wp-content/themes/MyNisarg/style.css" type="text/css" media="all">
<div id="page" class="hfeed site">
<header id="masthead" role="banner">
<nav class="navbar navbar-default navbar-fixed-top navbar-left" role="navigation">
<div class="container" id="navigation_menu">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/"><div class="coolshell_logo"></div>酷 壳 – CoolShell</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse"><ul id="menu-coolshell" class="nav navbar-nav"><li id="menu-item-17405" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-17405"><a title="首页" href="/">首页</a></li>
<li id="menu-item-17406" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17406"><a title="推荐文章" href="/featured.html">推荐文章</a></li>
<li id="menu-item-17407" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3839 current_page_item menu-item-17407 active"><a title="本站插件" href="/plugins">本站插件</a></li>
<li id="menu-item-17408" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17408"><a title="留言小本" href="/guestbook">留言小本</a></li>
<li id="menu-item-17409" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17409"><a title="关于酷壳" href="/about">关于酷壳</a></li>
<li id="menu-item-17410" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17410"><a title="关于陈皓" href="/haoel">关于陈皓</a></li>
<li id="menu-item-17582" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-17582"><a title="RSS" href="https://coolshell.cn/feed">RSS</a></li>
</ul></div>
</div>
</nav>
<div id="cc_spacer"></div>
<div class="site-header">
<div class="pull-right">
<a title="把这个链接拖到你的Chrome收藏夹工具栏中" href="javascript:(function(){function c(){var e=document.createElement("link");e.setAttribute("type","text/css");e.setAttribute("rel","stylesheet");e.setAttribute("href",f);e.setAttribute("class",l);document.body.appendChild(e)}function h(){var e=document.getElementsByClassName(l);for(var t=0;t<e.length;t++){document.body.removeChild(e[t])}}function p(){var e=document.createElement("div");e.setAttribute("class",a);document.body.appendChild(e);setTimeout(function(){document.body.removeChild(e)},100)}function d(e){return{height:e.offsetHeight,width:e.offsetWidth}}function v(i){var s=d(i);return s.height>e&&s.height<n&&s.width>t&&s.width<r}function m(e){var t=e;var n=0;while(!!t){n+=t.offsetTop;t=t.offsetParent}return n}function g(){var e=document.documentElement;if(!!window.innerWidth){return window.innerHeight}else if(e&&!isNaN(e.clientHeight)){return e.clientHeight}return 0}function y(){if(window.pageYOffset){return window.pageYOffset}return Math.max(document.documentElement.scrollTop,document.body.scrollTop)}function E(e){var t=m(e);return t>=w&&t<=b+w}function S(){var e=document.createElement("audio");e.setAttribute("class",l);e.src=i;e.loop=false;e.addEventListener("canplay",function(){setTimeout(function(){x(k)},500);setTimeout(function(){N();p();for(var e=0;e<O.length;e++){T(O[e])}},15500)},true);e.addEventListener("ended",function(){N();h()},true);e.innerHTML=" <p>If you are reading this, it is because your browser does not support the audio element. We recommend that you get a new browser.</p> <p>";document.body.appendChild(e);e.play()}function x(e){e.className+=" "+s+" "+o}function T(e){e.className+=" "+s+" "+u[Math.floor(Math.random()*u.length)]}function N(){var e=document.getElementsByClassName(s);var t=new RegExp("\\b"+s+"\\b");for(var n=0;n<e.length;){e[n].className=e[n].className.replace(t,"")}}var e=30;var t=30;var n=350;var r=350;var i="//s3.amazonaws.com/moovweb-marketing/playground/harlem-shake.mp3";var s="mw-harlem_shake_me";var o="im_first";var u=["im_drunk","im_baked","im_trippin","im_blown"];var a="mw-strobe_light";var f="//s3.amazonaws.com/moovweb-marketing/playground/harlem-shake-style.css";var l="mw_added_css";var b=g();var w=y();var C=document.getElementsByTagName("*");var k=null;for(var L=0;L<C.length;L++){var A=C[L];if(v(A)){if(E(A)){k=A;break}}}if(A===null){console.warn("Could not find a node of the right size. Please try a different page.");return}c();S();var O=[];for(var L=0;L<C.length;L++){var A=C[L];if(v(A)){O.push(A)}}})() ">High一下!</a>
</div>
<div class="site-branding">
<a class="home-link" href="https://coolshell.cn/" title="酷 壳 – CoolShell" rel="home">
<h1 class="site-title">酷 壳 – CoolShell</h1>
<h2 class="site-description">享受编程和技术所带来的快乐 – Coding Your Ambition</h2>
</a>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-md-9 nav-searchbox hidden-lg hidden-md visible-sm-* visible-xs-*">
<form role="search" method="get" class="search-form" action="https://coolshell.cn/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value name="s" title="Search for:">
</label>
<button type="submit" class="search-submit"><span class="screen-reader-text">Search</span></button>
</form>
</div>
</div>
</div>
<div id="content" class="site-content">
<div class="container">
<div class="row">
<div id="primary" class="col-md-9 content-area">
<main id="main" class="site-main" role="main">
<article id="post-3839" class="post-content post-3839 page type-page status-publish hentry">
<header class="entry-header">
<span class="screen-reader-text">本站插件</span>
<h1 class="entry-title">本站插件</h1>
<div class="entry-meta"></div>
</header>
<div class="entry-content">
<p>看到很多朋友留言询问酷壳(CoolShell.cn)安装了什么插件?</p>
<p>我在这里把酷壳(CoolShell.cn)WordPress安装了的插件一并列在这里了。</p>
<p><strong>注意</strong>:</p>
<ul>
<li>下面的这些插件的链接是其插件主页的链接,你可以在WordPress后台管理中添加插件时直接搜索安装就可以了。</li>
<li>插件不是越多越好。WP的某些插件的性能不是一般的慢,小心慎用。</li>
</ul>
<h4>建议安装的插件</h4>
<ul>
<li><strong><a href="http://akismet.com/" target="_blank" rel="noopener noreferrer">Akismet</a> </strong>– 有了他你就可以防止垃圾评论了。(本站的垃圾评论每天400条左右,这个插件的在我这里准确率是99.56%)</li>
<li><strong><a href="http://semperfiwebdesign.com/" target="_blank" rel="noopener noreferrer">All in One SEO Pack</a> </strong>– 搜索引擎优化的插件,帮你自动优化搜索引擎。</li>
<li><strong><a href="http://www.arnebrachhold.de/redir/sitemap-home/" target="_blank" rel="noopener noreferrer">Google XML Sitemaps</a></strong> – Google的站点图插件。(你可以在Google里输关键词“<a href="https://www.google.com.hk/search?hl=zh-CN&newwindow=1&biw=1280&bih=713&q=酷壳" target="_blank" rel="noopener noreferrer">酷壳</a>”,你会看到效果的)</li>
<li><strong><a href="http://ocaoimh.ie/wp-super-cache/" target="_blank" rel="noopener noreferrer">WP Super Cache</a></strong> – 强大的静态页生成插件,配置可能会比较麻烦,需要后台支持rewrite规则。(千万不要使用WP默认的链接形式—— /?p=不然,这个插件不会管用的。</li>
<li><strong><a href="https://wordpress.org/plugins/enlighter/" target="_blank" rel="noopener noreferrer">Enlighter – Customizable Syntax Highlighter</a> </strong>– 代码高亮插件,很不错。</li>
</ul>
<h4>锦上添花的插件</h4>
<ul>
<li><strong><a href="http://blog.ticktag.org/2009/02/19/2765/" target="_blank" rel="noopener noreferrer">Faster Image Insert</a> </strong>– 批量图片插入插件。</li>
<li><strong><a href="http://blog.jodies.de/2004/11/recent-comments/" target="_blank" rel="noopener noreferrer">Get Recent Comments</a> </strong>– 取得最新的评论插件(WP原有的评论展示功能很不好)</li>
<li><strong><a href="http://fairyfish.net/2007/09/12/wordpress-23-related-posts-plugin/" target="_blank" rel="noopener noreferrer">WordPress Related Posts</a> </strong>– 在每篇文章后根据Tag显示与此相关的文章。</li>
<li><strong><a href="http://wordpress.org/extend/plugins/wp-pagenavi/" target="_blank" rel="noopener noreferrer">WP-PageNavi</a> – </strong>分页导航插件(WP原有的分页功能很不好)</li>
<li><strong><a href="http://lesterchan.net/portfolio/programming/php/" target="_blank" rel="noopener noreferrer">WP-PostRatings</a> </strong>– 评分插件。这种插件有很多,这个插件好像不是很好,在一些以IE为内核的浏览器上无法正常工作。</li>
<li><strong><a href="http://xavisys.com/wordpress-google-analytics-plugin/" target="_blank" rel="noopener noreferrer">WP Google Analytics</a> </strong>– Google的网站统计插件。其实,就是把Google Analytics给你的那段代码加到每一个页面上。</li>
</ul>
<p>欢迎大家给我推荐插件。</p>
</div>
<footer class="entry-footer">
</footer>
</article>
<div id="comments" class="comments-area">
<h2 class="comments-title">
《<span>本站插件</span>》的相关评论 </h2>
<ol class="comment-list">
<li id="comment-1805903" class="comment even thread-even depth-1 parent">
<article id="div-comment-1805903" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/98bb1e16c881c586a46c7c0033293d07?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/98bb1e16c881c586a46c7c0033293d07?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="http://www.iaccepted.net" class="url" rel="ugc external nofollow">iaccepted</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1805903"><time datetime="2016-01-11T13:35:27+08:00">2016年01月11日 13:35</time></a> </div>
</footer>
<div class="comment-content">
<p>我想问下,阅读次数的显示与wp_super_cache是如何协调的,开启wp_super_cache后阅读次数就无法正确的计算。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1805903#respond" data-commentid="1805903" data-postid="3839" data-belowelement="div-comment-1805903" data-respondelement="respond" data-replyto="回复给iaccepted" aria-label="回复给iaccepted">回复</a></div> </article>
<ol class="children">
<li id="comment-1912702" class="comment odd alt depth-2 parent">
<article id="div-comment-1912702" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/5254bdf483b41175ce069def5319e87d?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/5254bdf483b41175ce069def5319e87d?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://zhangge.net/" class="url" rel="ugc external nofollow">张戈</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1912702"><time datetime="2017-02-07T13:40:35+08:00">2017年02月07日 13:40</time></a> </div>
</footer>
<div class="comment-content">
<p>wp-postviews插件可以支持wpsupercche缓存下的浏览计数,只是前台展示的时候也是缓存的,需要等刷新后才能展示最新数据。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1912702#respond" data-commentid="1912702" data-postid="3839" data-belowelement="div-comment-1912702" data-respondelement="respond" data-replyto="回复给张戈" aria-label="回复给张戈">回复</a></div> </article>
<ol class="children">
<li id="comment-2008139" class="comment even depth-3">
<article id="div-comment-2008139" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/a828457e781a830fee6a59110c332b3a?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/a828457e781a830fee6a59110c332b3a?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">time</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2008139"><time datetime="2019-07-29T21:16:07+08:00">2019年07月29日 21:16</time></a> </div>
</footer>
<div class="comment-content">
<p>挺棒!</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2008139#respond" data-commentid="2008139" data-postid="3839" data-belowelement="div-comment-2008139" data-respondelement="respond" data-replyto="回复给time" aria-label="回复给time">回复</a></div> </article>
</li>
</ol>
</li>
</ol>
</li>
<li id="comment-1810551" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-1810551" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/8187f5ce7cf16f96183329b355b02086?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/8187f5ce7cf16f96183329b355b02086?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="http://blog.ruanjiadeng.com" class="url" rel="ugc external nofollow">weaming</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1810551"><time datetime="2016-02-28T15:05:24+08:00">2016年02月28日 15:05</time></a> </div>
</footer>
<div class="comment-content">
<p>请问高亮插件总是对尖括号进行转义,结果变得面目全非,这个怎么解决,搜了一堆也没搜到可行的。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1810551#respond" data-commentid="1810551" data-postid="3839" data-belowelement="div-comment-1810551" data-respondelement="respond" data-replyto="回复给weaming" aria-label="回复给weaming">回复</a></div> </article>
</li>
<li id="comment-1914949" class="comment even thread-even depth-1">
<article id="div-comment-1914949" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/d79f9edf9cc69a7cc9d84dac76f5f0a7?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/d79f9edf9cc69a7cc9d84dac76f5f0a7?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">startx</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1914949"><time datetime="2017-07-07T17:06:43+08:00">2017年07月07日 17:06</time></a> </div>
</footer>
<div class="comment-content">
<p>博主您好!<br/>
两个问题。<br/>
1.您博客中的“全站热门”是用什么算法实现的,还是只是根据评论数目排序?<br/>
2.您“发表评论”下发的验证码是用插件实现的,还是您自己写的模块?<br/>
谢谢!</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1914949#respond" data-commentid="1914949" data-postid="3839" data-belowelement="div-comment-1914949" data-respondelement="respond" data-replyto="回复给startx" aria-label="回复给startx">回复</a></div> </article>
</li>
<li id="comment-1915283" class="comment odd alt thread-odd thread-alt depth-1">
<article id="div-comment-1915283" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/ae704cbfdbe1b4a5eaa98a6d85b1cc53?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/ae704cbfdbe1b4a5eaa98a6d85b1cc53?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="http://codeday.me" class="url" rel="ugc external nofollow">code</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1915283"><time datetime="2017-07-14T13:56:37+08:00">2017年07月14日 13:56</time></a> </div>
</footer>
<div class="comment-content">
<p>对社会化评论插件怎么看? 自己站点的留言换上插件更好吧?</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1915283#respond" data-commentid="1915283" data-postid="3839" data-belowelement="div-comment-1915283" data-respondelement="respond" data-replyto="回复给code" aria-label="回复给code">回复</a></div> </article>
</li>
<li id="comment-1916629" class="comment even thread-even depth-1">
<article id="div-comment-1916629" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/4abfaed4e0787c3aa86c0a423d9dcd47?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/4abfaed4e0787c3aa86c0a423d9dcd47?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">ychosen</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1916629"><time datetime="2017-08-21T22:25:30+08:00">2017年08月21日 22:25</time></a> </div>
</footer>
<div class="comment-content">
<p>博主好,看你的文章很久了,现在自己建了WordPress站,想问一下主界面的摘要长度是怎么控制的,看起来不是根据字符数,是每篇都自己制定了摘要吗?</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1916629#respond" data-commentid="1916629" data-postid="3839" data-belowelement="div-comment-1916629" data-respondelement="respond" data-replyto="回复给ychosen" aria-label="回复给ychosen">回复</a></div> </article>
</li>
<li id="comment-1923138" class="comment odd alt thread-odd thread-alt depth-1 parent">
<article id="div-comment-1923138" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/b9c733174d477d64cc0fa0fc450f6609?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/b9c733174d477d64cc0fa0fc450f6609?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">shawn</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1923138"><time datetime="2018-01-19T14:40:24+08:00">2018年01月19日 14:40</time></a> </div>
</footer>
<div class="comment-content">
<p>High一下是怎么实现的</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1923138#respond" data-commentid="1923138" data-postid="3839" data-belowelement="div-comment-1923138" data-respondelement="respond" data-replyto="回复给shawn" aria-label="回复给shawn">回复</a></div> </article>
<ol class="children">
<li id="comment-1944406" class="comment even depth-2">
<article id="div-comment-1944406" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/809a9fe7b9ae104e20faa0a36409d859?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/809a9fe7b9ae104e20faa0a36409d859?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">axx</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1944406"><time datetime="2018-11-21T10:55:01+08:00">2018年11月21日 10:55</time></a> </div>
</footer>
<div class="comment-content">
<p>查看网站源码,就可以了</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1944406#respond" data-commentid="1944406" data-postid="3839" data-belowelement="div-comment-1944406" data-respondelement="respond" data-replyto="回复给axx" aria-label="回复给axx">回复</a></div> </article>
</li>
</ol>
</li>
<li id="comment-1945895" class="comment odd alt thread-even depth-1">
<article id="div-comment-1945895" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/f1bb07c53c912184fcb57b1b20e37f4f?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/f1bb07c53c912184fcb57b1b20e37f4f?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">heha37</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1945895"><time datetime="2018-12-01T02:04:01+08:00">2018年12月01日 02:04</time></a> </div>
</footer>
<div class="comment-content">
<p>不错,这些插件自己应该都能用到。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1945895#respond" data-commentid="1945895" data-postid="3839" data-belowelement="div-comment-1945895" data-respondelement="respond" data-replyto="回复给heha37" aria-label="回复给heha37">回复</a></div> </article>
</li>
<li id="comment-1952518" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-1952518" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/29a9b5987c9e4a60f976cd4b6a39db82?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/29a9b5987c9e4a60f976cd4b6a39db82?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">node</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1952518"><time datetime="2019-01-22T17:27:48+08:00">2019年01月22日 17:27</time></a> </div>
</footer>
<div class="comment-content">
<p><svg\onload=”alert(1)”></p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1952518#respond" data-commentid="1952518" data-postid="3839" data-belowelement="div-comment-1952518" data-respondelement="respond" data-replyto="回复给node" aria-label="回复给node">回复</a></div> </article>
</li>
<li id="comment-1993594" class="comment odd alt thread-even depth-1">
<article id="div-comment-1993594" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/8679e24e58af8b23e895ac6d51defcb5?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/8679e24e58af8b23e895ac6d51defcb5?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://zapbikes.com" class="url" rel="ugc external nofollow">AdamZap</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-1993594"><time datetime="2019-04-23T03:25:33+08:00">2019年04月23日 03:25</time></a> </div>
</footer>
<div class="comment-content">
<p>我想知道这个主题是什么,我试了好多主题都不是很满意,我觉得你这个主题特别好看</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=1993594#respond" data-commentid="1993594" data-postid="3839" data-belowelement="div-comment-1993594" data-respondelement="respond" data-replyto="回复给AdamZap" aria-label="回复给AdamZap">回复</a></div> </article>
</li>
<li id="comment-2006152" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-2006152" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/3f3dfde2b46ab310036c4cd2113ea628?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/3f3dfde2b46ab310036c4cd2113ea628?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">shaohsiung</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2006152"><time datetime="2019-07-14T18:49:02+08:00">2019年07月14日 18:49</time></a> </div>
</footer>
<div class="comment-content">
<p>很喜欢网站里的内容。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2006152#respond" data-commentid="2006152" data-postid="3839" data-belowelement="div-comment-2006152" data-respondelement="respond" data-replyto="回复给shaohsiung" aria-label="回复给shaohsiung">回复</a></div> </article>
</li>
<li id="comment-2009986" class="comment odd alt thread-even depth-1">
<article id="div-comment-2009986" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/bb4d81b0d286eed246bf419d917b95f6?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/bb4d81b0d286eed246bf419d917b95f6?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">alex</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2009986"><time datetime="2019-08-08T18:19:45+08:00">2019年08月08日 18:19</time></a> </div>
</footer>
<div class="comment-content">
<p>so cool!</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2009986#respond" data-commentid="2009986" data-postid="3839" data-belowelement="div-comment-2009986" data-respondelement="respond" data-replyto="回复给alex" aria-label="回复给alex">回复</a></div> </article>
</li>
<li id="comment-2010814" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-2010814" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/7f927d35ad01a021a4291a69d3768334?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/7f927d35ad01a021a4291a69d3768334?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="http://www.aaa137.com" class="url" rel="ugc external nofollow">137博客</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2010814"><time datetime="2019-08-13T20:44:53+08:00">2019年08月13日 20:44</time></a> </div>
</footer>
<div class="comment-content">
<p>好文章支持一下,博客十年,欢迎回访我的博客</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2010814#respond" data-commentid="2010814" data-postid="3839" data-belowelement="div-comment-2010814" data-respondelement="respond" data-replyto="回复给137博客" aria-label="回复给137博客">回复</a></div> </article>
</li>
<li id="comment-2024879" class="comment odd alt thread-even depth-1">
<article id="div-comment-2024879" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/a9f955a75c84fd7cd7e88ea4f4ab5569?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/a9f955a75c84fd7cd7e88ea4f4ab5569?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://www.dute.org/" class="url" rel="ugc external nofollow">在线工具</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2024879"><time datetime="2019-09-27T15:29:04+08:00">2019年09月27日 15:29</time></a> </div>
</footer>
<div class="comment-content">
<p>在「建议安装的插件」部分,除了 SyntaxHighlighter Evolved 没哟用过,其他的都用了,确实好用。但我有一个原则是:能简单实现的绝对不用插件。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2024879#respond" data-commentid="2024879" data-postid="3839" data-belowelement="div-comment-2024879" data-respondelement="respond" data-replyto="回复给在线工具" aria-label="回复给在线工具">回复</a></div> </article>
</li>
<li id="comment-2035097" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-2035097" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/9f10c6cb45fd03918815d54461e801e1?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/9f10c6cb45fd03918815d54461e801e1?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">abelce</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2035097"><time datetime="2019-11-04T12:23:22+08:00">2019年11月04日 12:23</time></a> </div>
</footer>
<div class="comment-content">
<p>high一下好友意思^_^</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2035097#respond" data-commentid="2035097" data-postid="3839" data-belowelement="div-comment-2035097" data-respondelement="respond" data-replyto="回复给abelce" aria-label="回复给abelce">回复</a></div> </article>
</li>
<li id="comment-2041506" class="comment odd alt thread-even depth-1">
<article id="div-comment-2041506" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/a48d2f2a93cc35315f731f376948ecb7?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/a48d2f2a93cc35315f731f376948ecb7?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">码农志</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2041506"><time datetime="2019-11-27T16:15:00+08:00">2019年11月27日 16:15</time></a> </div>
</footer>
<div class="comment-content">
<p>评分的插件可以尝试下kk Star Ratings</p>
<p>代码高亮这个插件很久不更新了,有点不兼容,目前换成Enlighter。</p>
<p>缓存用的WP-ROCKET。</p>
<p>别的差距都和您一样的。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2041506#respond" data-commentid="2041506" data-postid="3839" data-belowelement="div-comment-2041506" data-respondelement="respond" data-replyto="回复给码农志" aria-label="回复给码农志">回复</a></div> </article>
</li>
<li id="comment-2106173" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-2106173" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/a26cd83c38a05cb3d6595f2e7ce3c414?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/a26cd83c38a05cb3d6595f2e7ce3c414?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://boutiqueaz.com/ustensile-cuisine/" class="url" rel="ugc external nofollow">Ustensile de cuisine</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2106173"><time datetime="2020-05-17T21:09:23+08:00">2020年05月17日 21:09</time></a> </div>
</footer>
<div class="comment-content">
<p>不错的出版物。 感谢分享! 我希望人们知道您的文章中这些信息的质量。 这是有趣的内容和出色的工作。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2106173#respond" data-commentid="2106173" data-postid="3839" data-belowelement="div-comment-2106173" data-respondelement="respond" data-replyto="回复给Ustensile de cuisine" aria-label="回复给Ustensile de cuisine">回复</a></div> </article>
</li>
<li id="comment-2122481" class="comment odd alt thread-even depth-1">
<article id="div-comment-2122481" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/f2bc8eb0dcbaf61d5d718f7839715c60?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/f2bc8eb0dcbaf61d5d718f7839715c60?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://coding3min.com" class="url" rel="ugc external nofollow">小熊</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2122481"><time datetime="2020-06-22T22:07:25+08:00">2020年06月22日 22:07</time></a> </div>
</footer>
<div class="comment-content">
<p>现在google已经不显示评分了</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2122481#respond" data-commentid="2122481" data-postid="3839" data-belowelement="div-comment-2122481" data-respondelement="respond" data-replyto="回复给小熊" aria-label="回复给小熊">回复</a></div> </article>
</li>
<li id="comment-2141370" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-2141370" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/4a6d8179ab28c8aa7661ab398c5820db?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/4a6d8179ab28c8aa7661ab398c5820db?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://yancc.top/" class="url" rel="ugc external nofollow">yancy_01</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2141370"><time datetime="2020-08-11T20:10:18+08:00">2020年08月11日 20:10</time></a> </div>
</footer>
<div class="comment-content">
<p>超级喜欢这个博客风格,所以我先模仿下,以后有想法了,自己改。现在有点雷同,只能说 respect</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2141370#respond" data-commentid="2141370" data-postid="3839" data-belowelement="div-comment-2141370" data-respondelement="respond" data-replyto="回复给yancy_01" aria-label="回复给yancy_01">回复</a></div> </article>
</li>
<li id="comment-2154348" class="comment odd alt thread-even depth-1">
<article id="div-comment-2154348" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/d342794ba8248a14b7b326b9aef3b683?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/d342794ba8248a14b7b326b9aef3b683?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://iyideng.com" class="url" rel="ugc external nofollow">灯行</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2154348"><time datetime="2020-09-18T10:03:17+08:00">2020年09月18日 10:03</time></a> </div>
</footer>
<div class="comment-content">
<p>批量图片插入插件是不是鸡肋?我感觉文章功能里好像也可以批量插入的。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2154348#respond" data-commentid="2154348" data-postid="3839" data-belowelement="div-comment-2154348" data-respondelement="respond" data-replyto="回复给灯行" aria-label="回复给灯行">回复</a></div> </article>
</li>
<li id="comment-2188610" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-2188610" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/de1e3e64f9fd7b1be5142f0897f113da?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/de1e3e64f9fd7b1be5142f0897f113da?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">abvic</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2188610"><time datetime="2020-12-29T10:07:44+08:00">2020年12月29日 10:07</time></a> </div>
</footer>
<div class="comment-content">
<p>请问haoel博客的审核是用插件实现自动垃圾评论过滤吗?还是人工实现的</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2188610#respond" data-commentid="2188610" data-postid="3839" data-belowelement="div-comment-2188610" data-respondelement="respond" data-replyto="回复给abvic" aria-label="回复给abvic">回复</a></div> </article>
</li>
<li id="comment-2230818" class="comment odd alt thread-even depth-1">
<article id="div-comment-2230818" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/3530deaf8c1bb72c4bff102699a1b6cc?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/3530deaf8c1bb72c4bff102699a1b6cc?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://www.aliwutai.com/" class="url" rel="ugc external nofollow">阿里舞台</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2230818"><time datetime="2021-04-11T01:24:11+08:00">2021年04月11日 01:24</time></a> </div>
</footer>
<div class="comment-content">
<p>每个人有不同的使用习惯,我的插件里有Smartideo、AddQuicktag这些,应用在不同功能上,使用的插件也大不相同,不过Google XML Sitemaps我也在用。</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2230818#respond" data-commentid="2230818" data-postid="3839" data-belowelement="div-comment-2230818" data-respondelement="respond" data-replyto="回复给阿里舞台" aria-label="回复给阿里舞台">回复</a></div> </article>
</li>
<li id="comment-2267687" class="comment even thread-odd thread-alt depth-1 parent">
<article id="div-comment-2267687" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/f287b06b6b49b1661dbebae18306abf3?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/f287b06b6b49b1661dbebae18306abf3?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">deemoprobe</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2267687"><time datetime="2021-06-21T11:42:36+08:00">2021年06月21日 11:42</time></a> </div>
</footer>
<div class="comment-content">
<p>你好,文章页面右侧的目录导航功能怎么实现的呀?是有什么插件么</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2267687#respond" data-commentid="2267687" data-postid="3839" data-belowelement="div-comment-2267687" data-respondelement="respond" data-replyto="回复给deemoprobe" aria-label="回复给deemoprobe">回复</a></div> </article>
<ol class="children">
<li id="comment-2357519" class="comment odd alt depth-2">
<article id="div-comment-2357519" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/79360ccf3f6926bf13665fcf18dbbf58?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/79360ccf3f6926bf13665fcf18dbbf58?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://www.pythonthree.com/" class="url" rel="ugc external nofollow">晓得博客</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2357519"><time datetime="2022-01-06T11:40:07+08:00">2022年01月06日 11:40</time></a> </div>
</footer>
<div class="comment-content">
<p>使用Table of Contents Plus插件,然后在小工具里面将TOC+ 拖放到主侧边栏,稍微设置即可完成,</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2357519#respond" data-commentid="2357519" data-postid="3839" data-belowelement="div-comment-2357519" data-respondelement="respond" data-replyto="回复给晓得博客" aria-label="回复给晓得博客">回复</a></div> </article>
</li>
</ol>
</li>
<li id="comment-2269553" class="comment even thread-even depth-1 parent">
<article id="div-comment-2269553" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/60beda3ae646389cd833033c3a0ae116?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/60beda3ae646389cd833033c3a0ae116?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="http://www.bi2.com.cn" class="url" rel="ugc external nofollow">cpu-dance</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2269553"><time datetime="2021-06-25T11:43:15+08:00">2021年06月25日 11:43</time></a> </div>
</footer>
<div class="comment-content">
<p>左耳听风老师是偶像</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2269553#respond" data-commentid="2269553" data-postid="3839" data-belowelement="div-comment-2269553" data-respondelement="respond" data-replyto="回复给cpu-dance" aria-label="回复给cpu-dance">回复</a></div> </article>
<ol class="children">
<li id="comment-2331885" class="comment odd alt depth-2">
<article id="div-comment-2331885" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/67d319d560a7c23c29d64cf1a77b58eb?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/67d319d560a7c23c29d64cf1a77b58eb?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn">劳码识途</b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2331885"><time datetime="2021-11-10T00:38:05+08:00">2021年11月10日 00:38</time></a> </div>
</footer>
<div class="comment-content">
<p>也是我的偶像</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2331885#respond" data-commentid="2331885" data-postid="3839" data-belowelement="div-comment-2331885" data-respondelement="respond" data-replyto="回复给劳码识途" aria-label="回复给劳码识途">回复</a></div> </article>
</li>
</ol>
</li>
<li id="comment-2304826" class="comment even thread-odd thread-alt depth-1">
<article id="div-comment-2304826" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img alt src="https://secure.gravatar.com/avatar/fe7f75c2f1268ad8647736e885ce4eb4?s=50&d=mm&r=g" srcset="https://secure.gravatar.com/avatar/fe7f75c2f1268ad8647736e885ce4eb4?s=100&d=mm&r=g 2x" class="avatar avatar-50 photo" height="50" width="50" loading="lazy" decoding="async" /> <b class="fn"><a href="https://jackchen.cn/blog" class="url" rel="ugc external nofollow">jackchen</a></b><span class="says">说道:</span> </div>
<div class="comment-metadata">
<a href="/plugins/comment-page-3#comment-2304826"><time datetime="2021-09-18T10:57:12+08:00">2021年09月18日 10:57</time></a> </div>
</footer>
<div class="comment-content">
<p>High一下太魔性了 🤣</p>
</div>
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="/plugins/comment-page-3?replytocom=2304826#respond" data-commentid="2304826" data-postid="3839" data-belowelement="div-comment-2304826" data-respondelement="respond" data-replyto="回复给jackchen" aria-label="回复给jackchen">回复</a></div> </article>
</li>
</ol>
<nav class="navigation comment-navigation" role="navigation">
<h2 class="screen-reader-text">Comment navigation</h2>
<div class="nav-links">
<div id="commentnavi">
<span class="pages"><i class="fa fa-comments"></i> 评论分页</span>
<div id="commentpager">
<a class="prev page-numbers" href="/plugins/comment-page-2#comments">« 上一页</a>
<a class="page-numbers" href="/plugins/comment-page-1#comments">1</a>
<a class="page-numbers" href="/plugins/comment-page-2#comments">2</a>
<span aria-current="page" class="page-numbers current">3</span> <span id="cp_post_id">3839</span>
</div>
<div class="fixed"></div>
</div>
</div>
</nav>
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">发表回复 <small><a rel="nofollow" id="cancel-comment-reply-link" href="/plugins/comment-page-3#respond" style="display:none;">取消回复</a></small></h3><form action="https://coolshell.cn/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">您的电子邮箱地址不会被公开。</span> <span class="required-field-message">必填项已用<span class="required">*</span>标注</span></p><p class="comment-form-comment"><label for="comment">评论 <span class="required">*</span></label> <textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525" required></textarea></p><p class="comment-form-author"><label for="author">显示名称 <span class="required">*</span></label> <input id="author" name="author" type="text" value size="30" maxlength="245" autocomplete="name" required /></p>
<p class="comment-form-email"><label for="email">电子邮箱地址 <span class="required">*</span></label> <input id="email" name="email" type="email" value size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email" required /></p>
<p class="comment-form-url"><label for="url">网站地址</label> <input id="url" name="url" type="url" value size="30" maxlength="200" autocomplete="url" /></p>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="发表评论" /> <input type="hidden" name="comment_post_ID" value="3839" id="comment_post_ID" />
<input type="hidden" name="comment_parent" id="comment_parent" value="0" />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="f2886a169a" /></p><p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="224" /><script type="f57a93f03fb1e1e286a33154-text/javascript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div>
</div>
</main>
</div>
<div id="secondary" class="col-md-3 hidden-sm hidden-xs sidebar widget-area" role="complementary">
<aside id="search-9" class="widget widget_search">
<form role="search" method="get" class="search-form" action="https://coolshell.cn/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value name="s" title="Search for:" />
</label>
<button type="submit" class="search-submit"><span class="screen-reader-text">Search</span></button>
</form>
</aside><aside id="custom_html-3" class="widget_text widget widget_custom_html"><h4 class="widget-title">本站公告</h4><p align="center"><a href="https://memorial.megaease.cn/">纪念陈皓</a></p><div class="textwidget custom-html-widget"><p align="center"><a class="twitter" href="https://twitter.com/haoel" target="_blank" rel="noopener"> Twitter @haoel </a></p>
<p align="center">极客时间专栏<br><a href="http://gk.link/a/10sBp" target="_blank" rel="noopener"><img src="/wp-content/uploads/2021/06/8311623409583_.pic_hd-1024x1024.jpg" height="200" weight="200" alt="极客时间专栏" title="极客时间专栏"></a></p>
</div></aside>
<aside id="recent-posts-4" class="widget widget_recent_entries">
<h4 class="widget-title"><a href="/articles/">最新文章</a></h4>
<ul>
<li>
<a href="/articles/22422.html">是微服务架构不香还是云不香?</a>
</li>
<li>
<a href="/articles/22398.html">我看ChatGPT: 为啥谷歌掉了千亿美金</a>
</li>
<li>
<a href="/articles/22367.html">聊聊 nostr 和 审查</a>
</li>
<li>
<a href="/articles/22341.html">感染新冠的经历</a>
</li>
<li>
<a href="/articles/22320.html">eBPF 介绍</a>
</li>
<li>
<a href="/articles/22298.html">聊聊团队协同和协同工具</a>
</li>
<li>
<a href="/articles/22263.html">从一次经历谈 TIME_WAIT 的那些事</a>
</li>
<li>
<a href="/articles/22242.html">ETCD的内存问题</a>
</li>
<li>
<a href="/articles/22173.html">“一把梭:REST API 全用 POST”</a>
</li>
<li>
<a href="/articles/22157.html">谈谈公司对员工的监控</a>
</li>
<li>
<a href="/articles/21708.html">网络数字身份认证术</a>
</li>
<li>
<a href="/articles/21672.html">我做系统架构的一些原则</a>
</li>
<li>
<a href="/articles/21649.html">源代码特洛伊木马攻击</a>
</li>
<li>
<a href="/articles/21615.html">Go编程模式 : 泛型编程</a>
</li>
<li>
<a href="/articles/21589.html">如何做一个有质量的技术分享</a>
</li>
<li>
<a href="/articles/21263.html">Go 编程模式:k8s Visitor 模式</a>
</li>
<li>
<a href="/articles/21228.html">Go编程模式:Pipeline</a>
</li>
<li>
<a href="/articles/21214.html">Go编程模式:委托和反转控制</a>
</li>
<li>
<a href="/articles/21179.html">Go 编程模式:Go Generation</a>
</li>
<li>
<a href="/articles/21164.html">Go编程模式:Map-Reduce</a>
</li>
<li>
<a href="/articles/21146.html">Go 编程模式:Functional Options</a>
</li>
<li>
<a href="/articles/21140.html">Go 编程模式:错误处理</a>
</li>
<li>
<a href="/articles/21128.html">Go编程模式:切片,接口,时间和性能</a>
</li>
<li>
<a href="/articles/21113.html">百度为什么掉队了</a>
</li>
<li>
<a href="/articles/20977.html">程序员如何把控自己的职业</a>
</li>
<li>
<a href="/articles/21003.html">计时攻击 Timing Attacks</a>
</li>
<li>
<a href="/articles/20845.html">Rust语言的编程范式</a>
</li>
<li>
<a href="/articles/20793.html">与程序员相关的CPU缓存知识</a>
</li>
<li>
<a href="/articles/20765.html">MegaEase的远程工作文化</a>
</li>
<li>
<a href="/articles/20533.html">使用简单的逻辑方法进行独立思考</a>
</li>
</ul>
</aside><aside id="views-6" class="widget widget_views"><h4 class="widget-title"><a href="/articles/">全站热门</a></h4><ul>
<li><a href="/articles/4990.html" title="程序员技术练级攻略 - 10,239,135 人阅读">程序员技术练级攻略</a></li><li><a href="/articles/3961.html" title="“火柴棍式”程序员面试题 - 2,356,180 人阅读">“火柴棍式”程序员面试题</a></li><li><a href="/articles/5426.html" title="简明 Vim 练级攻略 - 1,325,167 人阅读">简明 Vim 练级攻略</a></li><li><a href="/articles/9308.html" title="“作环保的程序员,从不用百度开始” - 589,176 人阅读">“作环保的程序员,从不用百度开始”</a></li><li><a href="/articles/11564.html" title="TCP 的那些事儿(上) - 488,655 人阅读">TCP 的那些事儿(上)</a></li><li><a href="/articles/9070.html" title="AWK 简明教程 - 453,287 人阅读">AWK 简明教程</a></li><li><a href="/articles/7186.html" title="做个环保主义的程序员 - 447,218 人阅读">做个环保主义的程序员</a></li><li><a href="/articles/10688.html" title="编程能力与编程年龄 - 416,599 人阅读">编程能力与编程年龄</a></li><li><a href="/articles/10590.html" title="二维码的生成细节和原理 - 393,738 人阅读">二维码的生成细节和原理</a></li><li><a href="/articles/9104.html" title="sed 简明教程 - 380,226 人阅读">sed 简明教程</a></li><li><a href="/articles/4102.html" title="如何学好C语言 - 368,356 人阅读">如何学好C语言</a></li><li><a href="/articles/19464.html" title="如何超过大多数人 - 313,990 人阅读">如何超过大多数人</a></li><li><a href="/articles/17583.html" title="技术人员的发展之路 - 308,274 人阅读">技术人员的发展之路</a></li><li><a href="/articles/9606.html" title="疫苗:Java HashMap的死循环 - 305,382 人阅读">疫苗:Java HashMap的死循环</a></li><li><a href="/articles/6470.html" title="由12306.cn谈谈网站性能技术 - 298,906 人阅读">由12306.cn谈谈网站性能技术</a></li><li><a href="/articles/8883.html" title="应该知道的Linux技巧 - 296,716 人阅读">应该知道的Linux技巧</a></li><li><a href="/articles/17416.html" title="缓存更新的套路 - 293,587 人阅读">缓存更新的套路</a></li><li><a href="/articles/10910.html" title="分布式系统的事务处理 - 284,593 人阅读">分布式系统的事务处理</a></li><li><a href="/articles/11609.html" title="TCP 的那些事儿(下) - 284,330 人阅读">TCP 的那些事儿(下)</a></li><li><a href="/articles/2250.html" title="“21天教你学会C++” - 278,558 人阅读">“21天教你学会C++”</a></li><li><a href="/articles/8239.html" title="无锁队列的实现 - 274,251 人阅读">无锁队列的实现</a></li><li><a href="/articles/20276.html" title="别让自己“墙”了自己 - 270,959 人阅读">别让自己“墙”了自己</a></li><li><a href="/articles/10739.html" title="Lua简明教程 - 269,312 人阅读">Lua简明教程</a></li><li><a href="/articles/7490.html" title="性能调优攻略 - 257,230 人阅读">性能调优攻略</a></li><li><a href="/articles/1846.html" title="MySQL性能优化的最佳20+条经验 - 255,709 人阅读">MySQL性能优化的最佳20+条经验</a></li><li><a href="/articles/4758.html" title="如何写出无法维护的代码 - 254,063 人阅读">如何写出无法维护的代码</a></li><li><a href="/articles/914.html" title="6个变态的C语言Hello World程序 - 251,839 人阅读">6个变态的C语言Hello World程序</a></li><li><a href="/articles/17010.html" title="Docker基础技术:Linux Namespace(上) - 241,754 人阅读">Docker基础技术:Linux Namespace(上)</a></li><li><a href="/articles/7829.html" title="28个Unix/Linux的命令行神器 - 241,171 人阅读">28个Unix/Linux的命令行神器</a></li><li><a href="/articles/11312.html" title="无插件Vim编程技巧 - 222,756 人阅读">无插件Vim编程技巧</a></li></ul>
</aside><aside id="categories-367921425" class="widget widget_categories"><h4 class="widget-title">分类</h4>
<ul>
<li class="cat-item cat-item-195"><a href="/category/itnews">业界新闻</a> (33)
</li>
<li class="cat-item cat-item-509"><a href="/category/%e4%bc%81%e4%b8%9a%e5%ba%94%e7%94%a8">企业应用</a> (2)
</li>
<li class="cat-item cat-item-9"><a href="/category/technews">技术新闻</a> (38)
</li>
<li class="cat-item cat-item-550"><a href="/category/%e6%8a%80%e6%9c%af%e7%ae%a1%e7%90%86">技术管理</a> (19)
</li>
<li class="cat-item cat-item-12"><a href="/category/techarticle">技术读物</a> (125)
</li>
<li class="cat-item cat-item-18"><a href="/category/operatingsystem">操作系统</a> (97)
<ul class="children">
<li class="cat-item cat-item-20"><a href="/category/operatingsystem/unixlinux">Unix/Linux</a> (81)
</li>
<li class="cat-item cat-item-19"><a href="/category/operatingsystem/mswindows">Windows</a> (12)
</li>
</ul>
</li>
<li class="cat-item cat-item-105"><a href="/category/datebase">数据库</a> (11)
</li>
<li class="cat-item cat-item-10"><a href="/category/misc">杂项资源</a> (295)
</li>
<li class="cat-item cat-item-15"><a href="/category/process">流程方法</a> (48)
</li>
<li class="cat-item cat-item-23"><a href="/category/progdesign">程序设计</a> (110)
</li>
<li class="cat-item cat-item-602"><a href="/category/%e7%b3%bb%e7%bb%9f%e6%9e%b6%e6%9e%84">系统架构</a> (15)
</li>
<li class="cat-item cat-item-1"><a href="/category/tools">编程工具</a> (67)
</li>
<li class="cat-item cat-item-3"><a href="/category/proglanguage">编程语言</a> (326)
<ul class="children">
<li class="cat-item cat-item-189"><a href="/category/proglanguage/dotnet">.NET编程</a> (3)
</li>
<li class="cat-item cat-item-8"><a href="/category/proglanguage/ajaxdev">Ajax开发</a> (9)
</li>
<li class="cat-item cat-item-5"><a href="/category/proglanguage/cplusplus">C/C++语言</a> (74)
</li>
<li class="cat-item cat-item-186"><a href="/category/proglanguage/erlang">Erlang</a> (1)
</li>
<li class="cat-item cat-item-819"><a href="/category/proglanguage/go-%e8%af%ad%e8%a8%80">Go 语言</a> (15)
</li>
<li class="cat-item cat-item-4"><a href="/category/proglanguage/javadev">Java语言</a> (32)
</li>
<li class="cat-item cat-item-11"><a href="/category/proglanguage/phpdev">PHP脚本</a> (11)
</li>
<li class="cat-item cat-item-33"><a href="/category/proglanguage/pythondev">Python</a> (23)
</li>
<li class="cat-item cat-item-100"><a href="/category/proglanguage/rubydev">Ruby</a> (5)
</li>
<li class="cat-item cat-item-860"><a href="/category/proglanguage/rust-%e8%af%ad%e8%a8%80">Rust 语言</a> (1)
</li>
<li class="cat-item cat-item-7"><a href="/category/proglanguage/webdev">Web开发</a> (106)
</li>
</ul>
</li>
<li class="cat-item cat-item-6"><a href="/category/netsecurity">网络安全</a> (36)
</li>
<li class="cat-item cat-item-39"><a href="/category/career">职场生涯</a> (40)
</li>
<li class="cat-item cat-item-271"><a href="/category/funny">趣味问题</a> (19)
</li>
<li class="cat-item cat-item-52"><a href="/category/story">轶事趣闻</a> (147)
</li>
</ul>
</aside><aside id="tag_cloud-4" class="widget widget_tag_cloud"><h4 class="widget-title">标签</h4><div class="tagcloud"><a href="/tag/agile" class="tag-cloud-link tag-link-17 tag-link-position-1" style="font-size: 11.559322033898pt;" aria-label="agile (15个项目)">agile</a>
<a href="/tag/ajax" class="tag-cloud-link tag-link-34 tag-link-position-2" style="font-size: 10.135593220339pt;" aria-label="AJAX (11个项目)">AJAX</a>
<a href="/tag/algorithm" class="tag-cloud-link tag-link-76 tag-link-position-3" style="font-size: 14.28813559322pt;" aria-label="Algorithm (26个项目)">Algorithm</a>
<a href="/tag/android" class="tag-cloud-link tag-link-145 tag-link-position-4" style="font-size: 10.135593220339pt;" aria-label="Android (11个项目)">Android</a>
<a href="/tag/bash" class="tag-cloud-link tag-link-190 tag-link-position-5" style="font-size: 9.1864406779661pt;" aria-label="Bash (9个项目)">Bash</a>
<a href="/tag/c" class="tag-cloud-link tag-link-59 tag-link-position-6" style="font-size: 20.694915254237pt;" aria-label="C++ (93个项目)">C++</a>
<a href="/tag/coding" class="tag-cloud-link tag-link-135 tag-link-position-7" style="font-size: 14.28813559322pt;" aria-label="Coding (26个项目)">Coding</a>
<a href="/tag/css" class="tag-cloud-link tag-link-96 tag-link-position-8" style="font-size: 13.457627118644pt;" aria-label="CSS (22个项目)">CSS</a>
<a href="/tag/design" class="tag-cloud-link tag-link-71 tag-link-position-9" style="font-size: 13.932203389831pt;" aria-label="Design (24个项目)">Design</a>
<a href="/tag/design-pattern" class="tag-cloud-link tag-link-25 tag-link-position-10" style="font-size: 9.6610169491525pt;" aria-label="design pattern (10个项目)">design pattern</a>
<a href="/tag/ebook" class="tag-cloud-link tag-link-101 tag-link-position-11" style="font-size: 11.559322033898pt;" aria-label="ebook (15个项目)">ebook</a>
<a href="/tag/flash" class="tag-cloud-link tag-link-98 tag-link-position-12" style="font-size: 8pt;" aria-label="Flash (7个项目)">Flash</a>
<a href="/tag/game" class="tag-cloud-link tag-link-125 tag-link-position-13" style="font-size: 9.1864406779661pt;" aria-label="Game (9个项目)">Game</a>
<a href="/tag/go" class="tag-cloud-link tag-link-238 tag-link-position-14" style="font-size: 13.220338983051pt;" aria-label="Go (21个项目)">Go</a>
<a href="/tag/golang" class="tag-cloud-link tag-link-237 tag-link-position-15" style="font-size: 10.966101694915pt;" aria-label="golang (13个项目)">golang</a>
<a href="/tag/google" class="tag-cloud-link tag-link-32 tag-link-position-16" style="font-size: 15.474576271186pt;" aria-label="Google (33个项目)">Google</a>
<a href="/tag/html" class="tag-cloud-link tag-link-38 tag-link-position-17" style="font-size: 15.593220338983pt;" aria-label="HTML (34个项目)">HTML</a>
<a href="/tag/ie" class="tag-cloud-link tag-link-175 tag-link-position-18" style="font-size: 9.6610169491525pt;" aria-label="IE (10个项目)">IE</a>
<a href="/tag/java" class="tag-cloud-link tag-link-13 tag-link-position-19" style="font-size: 17.610169491525pt;" aria-label="Java (50个项目)">Java</a>
<a href="/tag/javascript" class="tag-cloud-link tag-link-114 tag-link-position-20" style="font-size: 17.966101694915pt;" aria-label="Javascript (54个项目)">Javascript</a>
<a href="/tag/jquery" class="tag-cloud-link tag-link-191 tag-link-position-21" style="font-size: 10.135593220339pt;" aria-label="jQuery (11个项目)">jQuery</a>
<a href="/tag/linux" class="tag-cloud-link tag-link-37 tag-link-position-22" style="font-size: 19.389830508475pt;" aria-label="Linux (71个项目)">Linux</a>
<a href="/tag/mysql" class="tag-cloud-link tag-link-106 tag-link-position-23" style="font-size: 8pt;" aria-label="MySQL (7个项目)">MySQL</a>
<a href="/tag/oop" class="tag-cloud-link tag-link-245 tag-link-position-24" style="font-size: 8.5932203389831pt;" aria-label="OOP (8个项目)">OOP</a>
<a href="/tag/password" class="tag-cloud-link tag-link-319 tag-link-position-25" style="font-size: 8.5932203389831pt;" aria-label="password (8个项目)">password</a>
<a href="/tag/performance" class="tag-cloud-link tag-link-120 tag-link-position-26" style="font-size: 12.271186440678pt;" aria-label="Performance (17个项目)">Performance</a>
<a href="/tag/php" class="tag-cloud-link tag-link-35 tag-link-position-27" style="font-size: 14.050847457627pt;" aria-label="PHP (25个项目)">PHP</a>
<a href="/tag/programmer" class="tag-cloud-link tag-link-70 tag-link-position-28" style="font-size: 21.881355932203pt;" aria-label="Programmer (116个项目)">Programmer</a>
<a href="/tag/programming" class="tag-cloud-link tag-link-499 tag-link-position-29" style="font-size: 10.135593220339pt;" aria-label="Programming (11个项目)">Programming</a>
<a href="/tag/programming-language" class="tag-cloud-link tag-link-115 tag-link-position-30" style="font-size: 10.491525423729pt;" aria-label="programming language (12个项目)">programming language</a>
<a href="/tag/puzzle" class="tag-cloud-link tag-link-514 tag-link-position-31" style="font-size: 10.135593220339pt;" aria-label="Puzzle (11个项目)">Puzzle</a>
<a href="/tag/pythondev" class="tag-cloud-link tag-link-791 tag-link-position-32" style="font-size: 15pt;" aria-label="Python (30个项目)">Python</a>
<a href="/tag/ruby" class="tag-cloud-link tag-link-69 tag-link-position-33" style="font-size: 9.6610169491525pt;" aria-label="Ruby (10个项目)">Ruby</a>
<a href="/tag/sql" class="tag-cloud-link tag-link-131 tag-link-position-34" style="font-size: 9.6610169491525pt;" aria-label="SQL (10个项目)">SQL</a>
<a href="/tag/tdd" class="tag-cloud-link tag-link-485 tag-link-position-35" style="font-size: 8.5932203389831pt;" aria-label="TDD (8个项目)">TDD</a>
<a href="/tag/ui" class="tag-cloud-link tag-link-47 tag-link-position-36" style="font-size: 10.491525423729pt;" aria-label="UI (12个项目)">UI</a>
<a href="/tag/unix" class="tag-cloud-link tag-link-21 tag-link-position-37" style="font-size: 15.949152542373pt;" aria-label="Unix (36个项目)">Unix</a>
<a href="/tag/vim" class="tag-cloud-link tag-link-50 tag-link-position-38" style="font-size: 12.745762711864pt;" aria-label="vim (19个项目)">vim</a>
<a href="/tag/web" class="tag-cloud-link tag-link-30 tag-link-position-39" style="font-size: 16.661016949153pt;" aria-label="Web (42个项目)">Web</a>
<a href="/tag/windows" class="tag-cloud-link tag-link-49 tag-link-position-40" style="font-size: 12.271186440678pt;" aria-label="Windows (17个项目)">Windows</a>
<a href="/tag/xml" class="tag-cloud-link tag-link-104 tag-link-position-41" style="font-size: 8.5932203389831pt;" aria-label="XML (8个项目)">XML</a>
<a href="/tag/%e5%ae%89%e5%85%a8" class="tag-cloud-link tag-link-318 tag-link-position-42" style="font-size: 13.694915254237pt;" aria-label="安全 (23个项目)">安全</a>
<a href="/tag/%e7%a8%8b%e5%ba%8f%e5%91%98" class="tag-cloud-link tag-link-58 tag-link-position-43" style="font-size: 22pt;" aria-label="程序员 (119个项目)">程序员</a>
<a href="/tag/%e7%ae%97%e6%b3%95" class="tag-cloud-link tag-link-77 tag-link-position-44" style="font-size: 9.6610169491525pt;" aria-label="算法 (10个项目)">算法</a>
<a href="/tag/interview" class="tag-cloud-link tag-link-164 tag-link-position-45" style="font-size: 11.915254237288pt;" aria-label="面试 (16个项目)">面试</a></div>
</aside><aside id="archives-5" class="widget widget_archive"><h4 class="widget-title"><a href="/page/">归档</a></h4>
<ul>
<li><a href="/articles/date/2023/05">2023年5月</a> (1)</li>
<li><a href="/articles/date/2023/02">2023年2月</a> (2)</li>
<li><a href="/articles/date/2022/12">2022年12月</a> (2)</li>
<li><a href="/articles/date/2022/10">2022年10月</a> (1)</li>
<li><a href="/articles/date/2022/07">2022年7月</a> (1)</li>
<li><a href="/articles/date/2022/05">2022年5月</a> (1)</li>
<li><a href="/articles/date/2022/02">2022年2月</a> (2)</li>
<li><a href="/articles/date/2022/01">2022年1月</a> (1)</li>
<li><a href="/articles/date/2021/12">2021年12月</a> (1)</li>
<li><a href="/articles/date/2021/11">2021年11月</a> (1)</li>
<li><a href="/articles/date/2021/09">2021年9月</a> (1)</li>
<li><a href="/articles/date/2021/07">2021年7月</a> (1)</li>
<li><a href="/articles/date/2020/12">2020年12月</a> (9)</li>
<li><a href="/articles/date/2020/08">2020年8月</a> (1)</li>
<li><a href="/articles/date/2020/07">2020年7月</a> (1)</li>
<li><a href="/articles/date/2020/04">2020年4月</a> (1)</li>
<li><a href="/articles/date/2020/03">2020年3月</a> (1)</li>
<li><a href="/articles/date/2020/01">2020年1月</a> (1)</li>
<li><a href="/articles/date/2019/12">2019年12月</a> (2)</li>
<li><a href="/articles/date/2019/11">2019年11月</a> (1)</li>
<li><a href="/articles/date/2019/10">2019年10月</a> (1)</li>
<li><a href="/articles/date/2019/07">2019年7月</a> (1)</li>
<li><a href="/articles/date/2019/06">2019年6月</a> (1)</li>
<li><a href="/articles/date/2019/05">2019年5月</a> (1)</li>
<li><a href="/articles/date/2019/04">2019年4月</a> (2)</li>
<li><a href="/articles/date/2019/03">2019年3月</a> (1)</li>
<li><a href="/articles/date/2019/02">2019年2月</a> (1)</li>
<li><a href="/articles/date/2018/12">2018年12月</a> (1)</li>
<li><a href="/articles/date/2018/05">2018年5月</a> (1)</li>
<li><a href="/articles/date/2018/01">2018年1月</a> (1)</li>
<li><a href="/articles/date/2017/10">2017年10月</a> (1)</li>
<li><a href="/articles/date/2017/09">2017年9月</a> (1)</li>