includes/media.php – syntax error, unexpected $end line 1341
-
1341 –> function wp_embed_defaults() {
if ( !empty($GLOBALS[‘content_width’]) )
$theme_width = (int) $GLOBALS[‘content_width’];$width = get_option(’embed_size_w’);
if ( empty($width) && !empty($theme_width) )
$width = $theme_width;if ( empty($width) )
$width = 500;$height = get_option(’embed_size_h’);
if ( empty($height) )
$height = 700;return apply_filters( ’embed_defaults’, array(
‘width’ => $width,
‘height’ => $height,
) );
}Above error prevents opening admin dashboard – site views OK on internet
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘includes/media.php – syntax error, unexpected $end line 1341’ is closed to new replies.