web-dev-qa-db-ja.com

貼り付けたコンテンツからMicrosoft Wordのガンクをフィルタリングする方法を教えてください。

グループブログに投稿してカットアンドペーストできるユーザーがいますが、それらのペーストには次のようなものが含まれています。

<!– /* Font Definitions */ @font-face {font-family:”Cambria Math”; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-520092929 1073786111 9 0 415 0;} @font-face {font-family:”Trebuchet MS”; panose-1:2 11 6 3 2 2 2 2 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:647 0 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:”"; margin-top:0in; margin-right:0in; margin-bottom:10.0pt; margin-left:0in; line-height:115%; mso-pagination:Widow-Orphan; font-size:12.0pt; font-family:”Trebuchet MS”,”sans-serif”; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-bidi-font-family:”Times New Roman”; mso-bidi-theme-font:minor-bidi; color:black;} p {mso-style-noshow:yes; mso-style-priority:99; mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; mso-pagination:Widow-Orphan; font-size:12.0pt; font-family:”Times New Roman”,”serif”; mso-fareast-font-family:”Times New Roman”;} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:12.0pt; mso-ansi-font-size:12.0pt; mso-bidi-font-size:12.0pt; mso-ascii-font-family:”Trebuchet MS”; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-hansi-font-family:”Trebuchet MS”; mso-bidi-font-family:”Times New Roman”; mso-bidi-theme-font:minor-bidi; color:black;} .MsoPapDefault {mso-style-type:export-only; margin-bottom:10.0pt; line-height:115%;} @page WordSection1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.WordSection1 {page:WordSection1;} –>

/* Style Definitions */
table.MsoNormalTable
{mso-style-name:”Table Normal”;
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-qformat:yes;
mso-style-parent:”";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin-top:0in;
mso-para-margin-right:0in;
mso-para-margin-bottom:10.0pt;
mso-para-margin-left:0in;
line-height:115%;
mso-pagination:Widow-Orphan;
font-size:11.0pt;
font-family:”Calibri”,”sans-serif”;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:”Times New Roman”;
mso-fareast-theme-font:minor-fareast;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:”Times New Roman”;
mso-bidi-theme-font:minor-bidi;}

このようなコードを自動的に除外するために何ができますか?

3
artlung

WordPressに組み込まれているビジュアルテキストエディタには、Microsoft Wordのフォーマットを削除するボタンがあります。これは "Wordから貼り付け"というラベルが付いています alt text

8
Chris_O

私はOzhの TinyMCE Advanced プラグインを使うことを勧めます。それはあなたがあなたのためにそれらすべての面倒を見る 'Paste from Word'オプションを追加することを可能にします。

あなたがそれに興味を持っていないのであれば、あなたはもっといくつかの選択肢があります。このような:

function get_rid_of_mso_junk( $content ){
  return preg_replace( '@(mso|panose)[^:]{1,25}:[^;]+;(\s+)?(\n+)?@i', '', $content );
}

add_filter( 'content_save_pre', 'get_rid_of_mso_junk' );

削除する必要がある行を追加するために、その正規表現内の最初のキャプチャセットに望ましくない宣言を追加し続けるだけです。例:(mso|panose|other-junk|annoyance).

5
John P Bloch

この問題の解決策を探している人のために、私はこのようなことをしました:

function delete_between($beginning, $end, $string) {
    $beginningPos = strpos($string, $beginning);
    $endPos = strpos($string, $end);
    if (!$beginningPos || !$endPos) {
    return $string;
    }

    $textToDelete = substr($string, $beginningPos, ($endPos + strlen($end)) - $beginningPos);

    return str_replace($textToDelete, '', $string);
}

function clean_content( $content ){
    if( is_home() || is_single()){
        $content = delete_between('<!--[if gte mso', ';}', $content);   
        return $content;
    }else{
    return $content;
}

add_filter( 'the_content', 'clean_content' );
add_filter( 'the_excerpt', 'clean_content' );

Delete_between関数内の文字列は、必要なものに置き換えることができます。それは私のために働くように見えた。

2
codeprokanner

私はこの問題に直面しているクライアントとたくさん仕事をしました。私が見つけた、トリックは、HTMLビューにコピー&ペーストしてから、必要に応じてフォーマットを微調整するためにビジュアルエディタに戻ることです。

他のWebサイトからコピー&ペーストする場合も同様です。時には、誤ってクラス定義やインラインスタイルを外部ソースから取り込んでしまい、同じクラスやスタイルが自分のサイトで設定またはサポートされていないと、表示が壊れることがあります。

もう1つの選択肢は、ユーザーを Windows Live Writer に公開することです。これは完全に無料のMicrosoft製品で、Wordからのコピー&ペーストでうまく機能し、WordPressとやり取りすることができます - 投稿の作成、投稿の編集、組み込みスペルチェッカーの使用、正確に表示する投稿の書式設定どのようにあなたが望むか、そしてXMLRPCを介してWordPressにあなたの投稿をプッシュするために「発行」をクリックしてください。信じられないほど初めてブロガーにブログの書き方を教えるのを簡単にするのはかなり健全なシステムです。特にUIがWordでそもそも似ているので。

2
EAMann