Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_admin_canonical_url

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
1398      $filtered_url = remove_query_arg( $removable_query_args, $current_url );
1399
1400      /**
1401       * Filters the admin canonical URL value.
1402       *
1403       * @since 6.5.0
1404       *
1405       * @param string $filtered_url The admin canonical URL value.
1406       */
1407      $filtered_url = apply_filters( 'wp_admin_canonical_url', $filtered_url );
1408      ?>
1409      <link id="wp-admin-canonical" rel="canonical" href="<?php echo esc_url( $filtered_url ); ?>" />
1410      <script>
1411           if ( window.history.replaceState ) {
1412                window.history.replaceState( null, null, document.getElementById( 'wp-admin-canonical' ).href + window.location.hash );
1413           }
1414      </script>
1415      <?php
1416 }