Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: old_slug_redirect_post_id

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
1083           }
1084
1085           /**
1086            * Filters the old slug redirect post ID.
1087            *
1088            * @since 4.9.3
1089            *
1090            * @param int $id The redirect post ID.
1091            */
1092           $id = apply_filters( 'old_slug_redirect_post_id', $id );
1093
1094           if ( ! $id ) {
1095                return;
1096           }
1097
1098           $link = get_permalink( $id );
1099
1100           if ( get_query_var( 'paged' ) > 1 ) {
1101                $link = user_trailingslashit( trailingslashit( $link ) . 'page/' . get_query_var( 'paged' ) );