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



comments_link › WordPress Function

Seit0.71
Veraltetn/v
comments_link ( $deprecated = '', $deprecated_2 = '' )
Parameter: (2)
  • (string) $deprecated Not Used.
    Erforderlich: Nein
    Standard: (leer)
  • (string) $deprecated_2 Not Used.
    Erforderlich: Nein
    Standard: (leer)
Definiert in:
Codex:

Displays the link to the current post comments.



Quellcode

function comments_link( $deprecated = '', $deprecated_2 = '' ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '0.72' );
	}
	if ( ! empty( $deprecated_2 ) ) {
		_deprecated_argument( __FUNCTION__, '1.3.0' );
	}
	echo esc_url( get_comments_link() );
}