Quantcast
Channel: 神戸ホームページ制作会社ユニファースの代表ブログ
Viewing all articles
Browse latest Browse all 218

【WordPress】TinyMCEとmoreタグでエラー発生

$
0
0

プラグインのTinyMCE Advancedを有効にして、記事中に<!–more–>タグを挿入すると、記事一覧ページで</p></p>という構文エラーが発生する場合があります。

◆修正方法

functions.phpへ、以下のコードを追記。

//---------------------------------------------------------------------------
//	記事の置換
//---------------------------------------------------------------------------

function doReplace(){
add_filter('the_content', 'the_content_replace',1);
}

function the_content_replace($text){

$patterns = array();
$patterns[0] = '@<p></p>@';

$replacements = array();
$replacements[0] = '';

$text = preg_replace($patterns, $replacements, $text);

return $text;

}

archive.phpの

<?php 
the_content('');
?>

とあるところへ、

<?php 
doReplace(); //本文置換
the_content('');
?>

と記載。

以上で、構文エラーは修正出来ます。


Viewing all articles
Browse latest Browse all 218

Trending Articles