wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_wp_credits_add_profile_link › WordPress Function

Seit3.2.0
Veraltetn/v
_wp_credits_add_profile_link ( $display_name, $username, $profiles )
Zugriff:
  • private
Parameter: (3)
  • (string) $display_name The contributor's display name (passed by reference).
    Erforderlich: Ja
  • (string) $username The contributor's username.
    Erforderlich: Ja
  • (string) $profiles URL to the contributor's WordPress.org profile page.
    Erforderlich: Ja
Definiert in:
Codex:

Retrieves the link to a contributor's WordPress.org profile page.



Quellcode

function _wp_credits_add_profile_link( &$display_name, $username, $profiles ) {
	$display_name = '<a href="' . esc_url( sprintf( $profiles, $username ) ) . '">' . esc_html( $display_name ) . '</a>';
}