Definition:
function comments_link( $deprecated = '', $deprecated_2 = '' ) {}
Displays the link to the current post comments.
Parameters
- string $deprecated: Not Used
- bool $deprecated_2: Not Used
Source code
function comments_link( $deprecated = '', $deprecated_2 = '' ) { if ( !empty( $deprecated ) ) _deprecated_argument( __FUNCTION__, '0.72' ); if ( !empty( $deprecated_2 ) ) _deprecated_argument( __FUNCTION__, '1.3' ); echo get_comments_link(); }
643
No comments yet... Be the first to leave a reply!