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.
This hook occurs 2 times in this file.
Line | Code |
---|---|
1293 | $show_on_front = get_option( 'show_on_front' ); |
1294 | $page_for_posts = get_option( 'page_for_posts' ); |
1295 |
|
1296 | if ( 'page' === $show_on_front && $page_for_posts ) { |
1297 | $link = get_permalink( $page_for_posts ); |
1298 | } else { |
1299 | $link = get_home_url(); |
1300 | } |
1301 | /** This filter is documented in wp-includes/link-template.php */ |
1302 | return apply_filters( 'post_type_archive_link', $link, $post_type ); |
1303 | } |
1304 |
|
1305 | if ( ! $post_type_obj->has_archive ) { |
1306 | return false; |
1307 | } |
1308 |
|
1309 | if ( get_option( 'permalink_structure' ) && is_array( $post_type_obj->rewrite ) ) { |
1310 | $struct = ( true === $post_type_obj->has_archive ) ? $post_type_obj->rewrite['slug'] : $post_type_obj->has_archive; |
1311 | if ( $post_type_obj->rewrite['with_front'] ) { |
Line | Code |
1320 |
|
1321 | /** |
1322 | * Filters the post type archive permalink. |
1323 | * |
1324 | * @since 3.1.0 |
1325 | * |
1326 | * @param string $link The post type archive permalink. |
1327 | * @param string $post_type Post type name. |
1328 | */ |
1329 | return apply_filters( 'post_type_archive_link', $link, $post_type ); |
1330 | } |
1331 |
|
1332 | /** |
1333 | * Retrieves the permalink for a post type archive feed. |
1334 | * |
1335 | * @since 3.1.0 |
1336 | * |
1337 | * @param string $post_type Post type. |
1338 | * @param string $feed Optional. Feed type. Possible values include 'rss2', 'atom'. |