Đây là một ví dụ về dữ liệu được trả về từ wp_get_update_data()
hàm:
Array
(
[counts] => Array
(
[plugins] => 3
[themes] => 2
[wordpress] => 0
[translations] => 0
[total] => 5
)
[title] => 3 Plugin Updates, 2 Theme Updates
)
Vì vậy, số lượng cập nhật plugin có sẵn nên có sẵn với:
// Number of available plugin updates:
$update_data = wp_get_update_data();
echo $update_data['counts']['plugins'];
Cập nhật:
Để hiển thị thông tin plugin sau trong khu vực quản trị:
Có bản cập nhật có sẵn cho 3 plugin trong số 22
chúng ta cũng có thể sử dụng get_plugins()
chức năng:
if ( ! function_exists( 'get_plugins' ) )
{
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$data = array(
'updates' => $update_data['counts']['plugins'],
'total' => count( get_plugins() ),
);
printf(
"There are available updates for <strong>%d</strong> plugins
out of <strong>%d</strong>",
$data['updates'],
$data['total']
);
Chúng ta có thể thêm thông tin, theo cách tương tự, với get_mu_plugins()
và get_dropins()
.