wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_update_php_annotation › WordPress Function

Da5.1.0
Deprecaton/a
wp_update_php_annotation ( $before = '<p class="description">', $after = '</p>', $display = true )
Parametri: (3)
  • (string) $before Markup to output before the annotation. Default `&lt;p class=&quot;description&quot;&gt;`.
    Richiesto: No
    Default: '<p class="description">'
  • (string) $after Markup to output after the annotation. Default `&lt;/p&gt;`.
    Richiesto: No
    Default: '</p>'
  • (bool) $display Whether to echo or return the markup. Default `true` for echo.
    Richiesto: No
    Default: true
Ritorna:
  • (string|void)
Definito a:
Codex:
ChangeLog:
  • 5.2.0
  • 6.4.0

Prints the default annotation for the web host altering the "Update PHP" page URL.

This function is to be used after {@see} to display a consistent annotation if the web host has altered the default "Update PHP" page URL.


Sorgenti

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;
		}
	}
}