WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
1531 | $respond_link = get_permalink() . '#respond'; |
1532 | /** |
1533 | * Filters the respond link when a post has no comments. |
1534 | * |
1535 | * @since 4.4.0 |
1536 | * |
1537 | * @param string $respond_link The default response link. |
1538 | * @param integer $id The post ID. |
1539 | */ |
1540 | echo apply_filters( 'respond_link', $respond_link, $id ); |
1541 | } else { |
1542 | comments_link(); |
1543 | } |
1544 | echo '"'; |
1545 |
|
1546 | if ( !empty( $css_class ) ) { |
1547 | echo ' class="'.$css_class.'" '; |
1548 | } |
1549 |
|