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



comment_link › WordPress Function

Seit1.5.0
Veraltetn/v
comment_link ( $comment = null )
Parameter:
  • (int|WP_Comment) $comment Optional. Comment object or ID. Defaults to global comment object.
    Erforderlich: Nein
    Standard: null
Definiert in:
Codex:
Changelog:
  • 4.4.0

Displays the link to the comments.



Quellcode

function comment_link( $comment = null ) {
	/**
	 * Filters the current comment's permalink.
	 *
	 * @since 3.6.0
	 *
	 * @see get_comment_link()
	 *
	 * @param string $comment_permalink The current comment permalink.
	 */
	echo esc_url( apply_filters( 'comment_link', get_comment_link( $comment ) ) );
}