PHP code example of upperdog / hide-updates
1. Go to this page and download the library: Download upperdog/hide-updates library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
upperdog / hide-updates example snippets
function site_hide_updates_allowed_users() {
$allowed_users = array( 'bill', 'melinda' );
return $allowed_users;
}
add_filter( 'hide_updates_allowed_users', 'site_hide_updates_allowed_users' );