Wordpress更新版本

时间:2010-07-07 15:46:38

标签: php wordpress

Wordpress会定期检查以确保所使用的Wordpress版本是最新的...如果不是,则会在页脚和标题下方的通知中显示最新版本号。有谁知道我可以使用变量/常量/选项来获得这个数字?

感谢。

1 个答案:

答案 0 :(得分:1)

$wp_version是当前运行版本的全局变量。如果要检查新版本,请使用此选项(默认情况下仅在admin中使用):

$cur = get_preferred_from_update_core();
if($cur !== false && isset($cur->current) && !empty($cur->current)){
  $new_version = $cur->current;
} else {
  $new_version = "You have the latest version of WordPress!";
}