wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_update_php_annotation › WordPress Function

Depuis5.1.0
Dépréciéen/a
wp_update_php_annotation ( $before = '<p class="description">', $after = '</p>', $display = true )
Paramètres: (3)
  • (string) $before Markup to output before the annotation. Default `&lt;p class=&quot;description&quot;&gt;`.
    Requis: Non
    Défaut: '<p class="description">'
  • (string) $after Markup to output after the annotation. Default `&lt;/p&gt;`.
    Requis: Non
    Défaut: '</p>'
  • (bool) $display Whether to echo or return the markup. Default `true` for echo.
    Requis: Non
    Défaut: true
Retourne:
  • (string|void)
Défini(e) dans:
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.


Source

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