优化日志

<?php
/* 
Plugin Name: 模版函数扩展插件
Description: 给主题模版函数库“functions.php”文件里添加功能,避免因主题升级或更换主题造成对functions.php文件的代码修改丢失 
Author: <a href="https://guohao.asia/" >NULL</a>
*/
// Disables Kses only for textarea saves
foreach (array('pre_term_description', 'pre_link_description', 'pre_link_notes', 'pre_user_description') as $filter) {
  remove_filter($filter, 'wp_filter_kses');
 }

    // Disables Kses only for textarea admin displays
foreach (array('term_description', 'link_description', 'link_notes', 'user_description') as $filter) {
remove_filter($filter, 'wp_kses_data');
}
?>
*:not([class*="icon"]):not(i) {
font-family: Segoe UI, "Microsoft Yahei" !important;
}
//禁用WordPress大图片(2560大小)裁剪功能
add_filter( 'big_image_size_threshold', '__return_false' );
<link rel="stylesheet" href="/wp-content/highlight/styles/base16/onedark.min.css">		<!--引入代码深色背景-->
<script src="/wp-content/highlight/highlight.min.js"></script>							<!--引入代码高亮js-->
<script src="/wp-content/highlight/highlightjs-line-numbers/dist/highlightjs-line-numbers.min.js"></script>			<!--引入添加行号js-->
<script>
	hljs.initHighlightingOnLoad();
	hljs.initLineNumbersOnLoad();
</script>
//WordPress 文章首行缩进
function Bing_paragraph_indentation( $content ){
    return str_replace( '<p', '<p style="text-indent:2em;"', $content );
}
add_filter( 'the_content', 'Bing_paragraph_indentation' );
0 0 投票数
文章评分
订阅评论
提醒
guest

2 评论
内联反馈
查看所有评论
匿名
匿名
2022年10月4日 下午2:51

测试缓存功能对此插件的影响

来自天津
匿名
匿名
2022年9月3日 上午10:10

测试评论功能

来自美国