Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: next_comments_link_attributes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
3132      }
3133
3134      /**
3135       * Filters the anchor tag attributes for the next comments page link.
3136       *
3137       * @since 2.7.0
3138       *
3139       * @param string $attributes Attributes for the anchor tag.
3140       */
3141      $attr = apply_filters( 'next_comments_link_attributes', '' );
3142
3143      return sprintf(
3144           '<a href="%1$s" %2$s>%3$s</a>',
3145           esc_url( get_comments_pagenum_link( $next_page, $max_page ) ),
3146           $attr,
3147           preg_replace( '/&([^#])(?![a-z]{1,8};)/i', '&#038;$1', $label )
3148      );
3149 }
3150