【问题标题】:How to check if plugin is compatible with Wordpress Version?如何检查插件是否与 Wordpress 版本兼容?
【发布时间】:2015-04-04 00:56:24
【问题描述】:

wordpress 框架中是否有一个函数可以进行这个检查(没有get_bloginfo("version"))?应该像这样工作:

wp_version_is_equal_or_greater_than("3.5");

【问题讨论】:

  • 你有什么问题?你为什么不能用那个方法?你需要完成什么?

标签: php wordpress plugins


【解决方案1】:

您可以自己制作该功能:

function wp_version_is_equal_or_greater_than( $version ) {
    if(bloginfo( 'version' ) >= $version) return true;
    return false;
}

【讨论】:

    猜你喜欢
    • 2021-07-26
    • 1970-01-01
    • 2013-02-12
    • 1970-01-01
    • 2015-10-14
    • 1970-01-01
    • 2020-10-16
    • 1970-01-01
    • 2021-04-11
    相关资源
    最近更新 更多