wp_get_update_php_url
函数
wp_get_update_php_url ( No parameters )
- 返回值
-
- (string) URL to learn more about updating PHP.
- 定义位置
-
-
wp-includes/functions.php
, line 7955
-
wp-includes/functions.php
- 引入
- 5.1.0
- 弃用
- –
Gets the URL to learn more about updating the PHP version the site is running on.
This URL can be overridden by specifying an environment variable `WP_UPDATE_PHP_URL` or by using the
{@see ‘wp_update_php_url’} filter. Providing an empty string is not allowed and will result in the
default URL being used. Furthermore the page the URL links to should preferably be localized in the
site language.
function wp_get_update_php_url() { $default_url = wp_get_default_update_php_url(); $update_url = $default_url; if ( false !== getenv( 'WP_UPDATE_PHP_URL' ) ) { $update_url = getenv( 'WP_UPDATE_PHP_URL' ); } /** * Filters the URL to learn more about updating the PHP version the site is running on. * * Providing an empty string is not allowed and will result in the default URL being used. Furthermore * the page the URL links to should preferably be localized in the site language. * * @since 5.1.0 * * @param string $update_url URL to learn more about updating PHP. */ $update_url = apply_filters( 'wp_update_php_url', $update_url ); if ( empty( $update_url ) ) { $update_url = $default_url; } return $update_url; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。