WAMP では奇妙なエラーが発生しますが、ホスティングでは発生しません。エラーは次のとおりです。
Warning: strpos(): Offset not contained in string in C:\wamp\www\wordpress\wp-content\themes\corpo-child\functions.php on line 292
機能は次のとおりです。
function url( $atts, $content = null ) {
$cnt = substr($content, 0, strpos($content, '/', strpos($content, '/')+2));
$cnt = str_replace('http://www.', '', $cnt);
$cnt = str_replace('http://', '', $cnt);
$cnt = str_replace('www.', '', $cnt);
$cnt = str_replace('embed.', '', $cnt);
return '<div id="url"><a href="/external/?link='.$content.'" target="_blank">'.$cnt.'</a></div>';
}
292行目は次のとおりです。
$cnt = substr($content, 0, strpos($content, '/', strpos($content, '/')+2));