https://tanomimasu.com/archives/18332
この記事の
===
Vimeo
左が変更前、右が変更後のページ。上下にあった無駄な余白を削除した。
===
を実現したかったが
===
wp-content/themes/affinger5-child/functions.php ファイルの17行目のエラーのため、PHP コードの変更をロールバックしました。修正し、もう一度保存してください。
syntax error, unexpected '<'
===
このエラーが出る。
ちなみに、17行目はこれです
===
$the_content = preg_replace('/<iframe[^>]+?vimeo.com[^<]+?</iframe>/is', '<div class="vimeo-container"><div class="vimeo">${0}</div></div>', $the_content);
===
全体はこれです
===
//iframeのレスポンシブ対応
function wrap_iframe_in_div($the_content) {
if ( is_singular() ) {
//vimeo動画にラッパーを装着
$the_content = preg_replace('/<iframe[^>]+?vimeo.com[^<]+?</iframe>/is', '<div class="vimeo-container"><div class="vimeo">//iframeのレスポンシブ対応
function wrap_iframe_in_div($the_content) {
if ( is_singular() ) {
//vimeo動画にラッパーを装着
$the_content = preg_replace('/<iframe[^>]+?vimeo.com[^<]+?</iframe>/is', '<div class="vimeo-container"><div class="vimeo">${0}</div></div>', $the_content);
}
return $the_content;
}
add_filter('the_content','wrap_iframe_in_div');</div></div>', $the_content);
}
return $the_content;
}
add_filter('the_content','wrap_iframe_in_div');
===
回答2件
あなたの回答
tips
プレビュー