返信先: 【解決済】ステータス「キャンセル」が効かない
フォーラム › 使い方全般 › 【解決済】ステータス「キャンセル」が効かない › 返信先: 【解決済】ステータス「キャンセル」が効かない
すみません。先の説明で、functions.phpの中で、本文を[‘before’]と[‘after’]に変更する部分を書いていませんでした。
——————
function get_the_divided_content( $more_link_text = null, $stripteaser = 0, $more_file = ” ) {
$regex = ‘#(<p><span id=”more-[\d]+”></span></p>|<span id=”more-[\d]+”></span>)#’;
$content = get_the_content( $more_link_text, $stripteaser, $more_file );
$content = apply_filters( ‘the_content’, $content );
$content = str_replace( ‘]]>’, ‘]]>’, $content );
if ( preg_match( $regex, $content ) ) {
list( $content_array[‘before’], $content_array[‘after’] ) = preg_split( $regex, $content, 2 );
} else {
$content_array[‘before’] = $content;
$content_array[‘after’] = ”;
}
return $content_array;
}
———————-
どうぞよろしくお願いいたします。
-
この返信は2年、 6ヶ月前に
masato-hashimotoが編集しました。