I am getting this error on log file:
A non-numeric value encountered in /wp-content/themes/myarcadetheme/functions.php on line 1279
This is the code within functions.php:
function myarcadetheme_game_height( $height ) {
global $post;
if ( ! isset( $post->ID ) ) {
return $height;
}
$width = get_post_meta( $post->ID, 'mabp_width', true );
$ratio = $width / $height;
$new_width = myrcadetheme_game_width( $width );
$height = $new_width / $ratio;
return $height;
}
add_filter( 'myarcade_game_height', 'myarcadetheme_game_height' );
This is the code found on line 1279.
$ratio = $width / $height;
Please help.