本文介绍了如何检查插件是否与 Wordpress 版本兼容?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
wordpress 框架中是否有进行此检查的函数(没有 get_bloginfo("version")
)?应该像这样工作:
Is there a function in wordpress framework which makes this check (without get_bloginfo("version")
)? Should work like this:
wp_version_is_equal_or_greater_than("3.5");
推荐答案
您可以自己制作该功能:
You can make that function yourself:
function wp_version_is_equal_or_greater_than( $version ) {
if(bloginfo( 'version' ) >= $version) return true;
return false;
}
这篇关于如何检查插件是否与 Wordpress 版本兼容?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!