wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_update_php_annotation › WordPress Function
Seit5.1.0
Veraltetn/v
› wp_update_php_annotation ( $before = '<p class="description">', $after = '</p>', $display = true )
| Parameter: (3) |
|
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Prints the default annotation for the web host altering the "Update PHP" page URL.
This function is to be used after wp_get_update_php_url to display a consistent annotation if the web host has altered the default "Update PHP" page URL.Ähnliche Funktionen: wp_get_update_php_annotation, wp_update_post, update_option, wp_update_plugin, wp_update_link
Quellcode
function wp_update_php_annotation( $before = '<p class="description">', $after = '</p>', $display = true ) {
$annotation = wp_get_update_php_annotation();
if ( $annotation ) {
if ( $display ) {
echo $before . $annotation . $after;
} else {
return $before . $annotation . $after;
}
}
return null;
}