WordPress新手,在安装主题和插件时保持以下错误

我目前正在使用Wordpress开发2个站点, 并由一个共享的主机托管, 该主机由几个不同的WP狂热者推荐给我。
网站1将是一个中高容量博客。通过共享主机的一键式安装, 它附带了插件W3 Total Cache, 从我阅读的所有内容来看, 它是最好的。
2个问题。首先, 每次我上传主题时, 都会在admin中收到以下错误:
每当我尝试更改W3 Total Cache中的设置时, 都会在admin中遇到以下15至20个错误:

Notice: get_theme is deprecated since version 3.4! Use wp_get_theme( $stylesheet ) instead. in /home/jpweber/public_html/wp-includes/functions.php on line 2824Notice: get_themes is deprecated since version 3.4! Use wp_get_themes() instead. in /home/jpweber/public_html/wp-includes/functions.php on line 2824

无论安装什么主题, 网站上每个页面的顶部都会出现以下3个错误:
Notice: add_custom_background is deprecated since version 3.4! Use add_theme_support( 'custom-background', $args ) instead. in /home/jpweber/public_html/wp-includes /functions.php on line 2824Notice: get_theme_data is deprecated since version 3.4! Use wp_get_theme() instead. in /home/jpweber/public_html/wp-includes/functions.php on line 2824Notice: Undefined variable: output in /home/jpweber/public_html/wp-content/themes/respo /functions/theme-actions.php on line 138

我没有对functions.php进行任何更改, 并且下载了functions.php的新副本, 并且检查了functions.php文件以查看是否应用了作者主页上的任何答案, 但我已经没有答案。
更新:
供参考, 这是我在functions.php中的2821-2828行:
// Allow plugin to filter the output error trigger if ( WP_DEBUG & & apply_filters( 'deprecated_function_trigger_error', true ) ) { if ( ! is_null($replacement) ) trigger_error( sprintf( __('%1$s is < strong> deprecated< /strong> since version %2$s! Use %3$s instead.'), $function, $version, $replacement ) ); else trigger_error( sprintf( __('%1$s is < strong> deprecated< /strong> since version %2$s with no alternative available.'), $function, $version ) ); } }

在我的theme_actions.php文件中, 这是第138行:
$output .= ' {font:'.$font_nav["style"].' '.$font_nav["size"].'px/1.5em '.stripslashes($font_nav["face"]).'; color:'.$font_nav["color"].'}' . "\n";

#1【WordPress新手,在安装主题和插件时保持以下错误】通知有点告诉你该怎么做, 它们非常具有描述性。你可以按照通知进行后续操作, 或者将错误级别设置为低于通知, 这样消息就不会再显示(不过不建议)

    推荐阅读