您可以添加一个希伯来文短代码来环绕希伯来文文本,然后使用CSS2方向属性来指示文本方向。
e、 g.:
在您的主题功能中。php:
function hebrew_shortcode( $atts, $content = null ) {
return \'<p lang="he" DIR="RTL">\' . $content . \'</p>\';
}
add_shortcode( \'hebrew\', \'hebrew_shortcode\' );
您的内容:
[希伯来语]希伯来语风格从右到左文本![/希伯来语]
编辑:我已经更新为使用dir html属性(spec docs说do to sue css表示从右到左),并改为使用p元素