Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: redirect_post_location

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
1865
1866      /**
1867       * Filters the post redirect destination URL.
1868       *
1869       * @since 2.9.0
1870       *
1871       * @param string $location The destination URL.
1872       * @param int    $post_id  The post ID.
1873       */
1874      wp_redirect( apply_filters( 'redirect_post_location', $location, $post_id ) );
1875      exit;
1876 }
1877
1878 /**
1879  * Return whether the post can be edited in the block editor.
1880  *
1881  * @since 5.0.0
1882  *
1883  * @param int|WP_Post $post Post ID or WP_Post object.