wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_get_update_php_annotation › WordPress Function
Seit5.2.0
Veraltetn/v
› wp_get_update_php_annotation ( Keine Parameter )
Gibt zurück: |
|
Definiert in: |
|
Codex: |
Returns the default annotation for the web hosting altering the "Update PHP" page URL.
This function is to be used after {@see} to return a consistent annotation if the web host has altered the default "Update PHP" page URL.Ähnliche Funktionen: wp_update_php_annotation, wp_get_update_php_url, wp_get_update_data, wp_get_update_https_url, _get_path_to_translation
Quellcode
function wp_get_update_php_annotation() { $update_url = wp_get_update_php_url(); $default_url = wp_get_default_update_php_url(); if ( $update_url === $default_url ) { return ''; } $annotation = sprintf( /* translators: %s: Default Update PHP page URL. */ __( 'This resource is provided by your web host, and is specific to your site. For more information, <a href="%s" target="_blank">see the official WordPress documentation</a>.' ), esc_url( $default_url ) ); return $annotation; }