File: /sites/nuofama.com/wp-content/themes/blocksy/functions.php
<?php
/**
* Blocksy functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Blocksy
*/
if (version_compare(PHP_VERSION, '5.7.0', '<')) {
require get_template_directory() . '/inc/php-fallback.php';
return;
}
require get_template_directory() . '/inc/init.php';
/* Add CSS to hide error hints */
function admin_mycss() {
echo '<style>
.trp-notice.notice.error, span.update-plugins.trp-update-plugins{display:none!important;} </style>
'; }
add_action('admin_head', 'admin_mycss');