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 |
---|---|
1396 | $inlink = str_replace( '%title', $title, $link ); |
1397 | $inlink = str_replace( '%date', $date, $inlink ); |
1398 | $inlink = $string . $inlink . '</a>'; |
1399 |
|
1400 | $output = str_replace( '%link', $inlink, $format ); |
1401 | } |
1402 |
|
1403 | $adjacent = $previous ? 'previous' : 'next'; |
1404 |
|
1405 | echo apply_filters( "{$adjacent}_post_link", $output, $format, $link, $post ); |
1406 | } |
1407 |
|
1408 | /** |
1409 | * Retrieve links for page numbers. |
1410 | * |
1411 | * @since 1.5.0 |
1412 | * |
1413 | * @param int $pagenum Optional. Page ID. |
1414 | * @param bool $escape Optional. Whether to escape the URL for display, with esc_url(). Defaults to true. |