我们在发布文章的时候发现中文与英文、中文和数字之间加上空格的排版会更好看点,如果编辑文章的时候人工添加,感觉非常繁琐,今天主题盒子小编为大家分享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/**ster**y/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-f**ily:Arial;
font-size:0.89em;
}
body.han-la code hanla,body.han-la pre hanla,body.han-la kbd hanla,body.han-la s**p 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缓存及浏览器缓存。
暂无评论内容