WordPress让中英文、数字间排版好看
WordPress主题站在撰写文章时多多少少都是中英文、数字间来回书写的,这样也是为了丰富文章多样性,当然在丰富多样性的同时也需要排版好看,但开发者自己去添加空格编排就会花费大量时间,所以今天我们就交大家如何自动为文章编排添加空格:
第一步:html或body标签中加入han-la类
在HTML标签中添加class=”han-la”(一般在header.php文件中)。但是并不是硬性规定,现在很多博客都是通过功能函数动态加载class类,那么同样的,你也可以将这个han-la类动态加载到BODY中去。 将类加载到HTML标签中的方法就不说了,这里说下怎么加载到body标签中,当然在这里,你的主题应该是使用了body_class()这个标准函数的。
/**
* 在body标签中加入han-la类
*/
function lxtx_add_hanla_to_body_class( $classes ) {
$classes[] = ‘han-la’;
return $classes;
}
add_filter(‘body_class’, ‘lxtx_add_hanla_to_body_class’);
第二步:引入JS文件
在iquery文件后面引入text-autospace.min.js或text-autospace.js,下载地址为:https://github.com/mastermay/text-autospace.js.
/**
* 加入text-autospace.min.js文件
*/
function lxtx_styles_scripts() {
//全局加载js脚本
wp_enqueue_script( ‘han-la-js’, get_template_directory_uri() . ‘https://static.wpdaxue.com/includes/js/text-autospace.min.js’, array( ‘jquery’ ), ”, true );
}
add_action( ‘wp_enqueue_scripts’, ‘lxtx_styles_scripts’ );
注意修改代码中第8行的文件引用路径哦~
最后一步:添加CSS代码
/* han-la xtx */
body.han-la hanla:after {
content:” “;
display:inline;
font-family:Arial;
font-size:0.89em;
}
body.han-la code hanla,body.han-la pre hanla,body.han-la kbd hanla,body.han-la samp hanla {
display:none;
}
body.han-la ol > hanla,body.han-la ul > hanla {
display:none;
}
当然,如果在第一步中,你是将HANA-LA类CLASS加到HTML标签中的话,在这一步中你需要将以上CSS代码中的BODY全改为HTML。
友情提示:因为添加了JS和CSS文件,故要记得清空主题插件缓存、CDN缓存及浏览器缓存。
0条评论