私はCMSとしてワードプレスを使用して多言語のウェブサイトを作成しています。
多言語サポートのためにqTranslateプラグインを使用しています。プラグインを有効にするとすぐに、テキストのすべてのフォーマットが失われます。つまり、エディタ内のすべての段落が1つの段落にマージされます。
設定でこのオプションを有効にしました:「WordPressは無効にネストされたXHTMLを自動的に修正する必要があります」が、変更はありません。
何か提案はありますか?
私はCMSとしてワードプレスを使用して多言語のウェブサイトを作成しています。
多言語サポートのためにqTranslateプラグインを使用しています。プラグインを有効にするとすぐに、テキストのすべてのフォーマットが失われます。つまり、エディタ内のすべての段落が1つの段落にマージされます。
設定でこのオプションを有効にしました:「WordPressは無効にネストされたXHTMLを自動的に修正する必要があります」が、変更はありません。
何か提案はありますか?
wp-content\themes\your-theme-name\functions.phpの末尾に次のコードを追加します。
//************************** PATCH START *****************************
// Fix for qTranslate plugin (that does not retain formatting in pages)
if('html' != wp_default_editor()) {
remove_filter('the_editor_content', 'wp_richedit_pre');
add_filter('the_editor_content', 'wp_htmledit_pre');
}
remove_filter( 'the_content', 'wpautop' );
if ( ! function_exists('tmce_replace') ) {
function tmce_replace() {
$tadv_options = get_option('tadv_options', array());
$tadv_plugins = get_option('tadv_plugins', array());
?>
<script type="text/javascript">
if ( typeof(jQuery) != 'undefined' ) {
jQuery('body').bind('afterPreWpautop', function(e, o){
o.data = o.unfiltered
.replace(/caption\]\ +?<\/object>/g, function(a) {
return a.replace(/[\r\n]+/g, ' ');
});
}).bind('afterWpautop', function(e, o){
o.data = o.unfiltered;
});
}
</script>
<?php
}
add_action( 'after_wp_tiny_mce', 'tmce_replace' );
}
function teslina_tinymce_config( $init ) {
$init['remove_linebreaks'] = false;
$init['apply_source_formatting'] = true;
$init['preformatted'] = true;
$init['remove_redundant_brs'] = false;
return $init;
}
add_filter('tiny_mce_before_init', 'teslina_tinymce_config');
//************************** PATCH END *******************************
I found a solution here: http://www.teslina.com/en/748/wordpress/qtranslate-code-syntax-bugfix/
However i suspect that the code added in plugin will be removed when it's updated.
次のようにテストするために、html モードで簡単な投稿を作成します。
<p>lorem</p>
<p>ipsum</p>
wordpress には、テキストをフォーマットするためのフィルター (プラグイン、または functions.php) があります。それらを見つけようとするか、Polylang などの別のプラグインを試してください。