Changeset 47018 for trunk/src/wp-includes/functions.php
- Timestamp:
- 12/28/2019 09:18:03 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r47002 r47018 1635 1635 */ 1636 1636 echo apply_filters( 'robots_txt', $output, $public ); 1637 } 1638 1639 /** 1640 * Display the favicon.ico file content. 1641 * 1642 * @since 5.4.0 1643 */ 1644 function do_favicon() { 1645 /** 1646 * Fires when serving the favicon.ico file. 1647 * 1648 * @since 5.4.0 1649 */ 1650 do_action( 'do_faviconico' ); 1651 1652 wp_redirect( get_site_icon_url( 32, admin_url( 'images/w-logo-blue.png' ) ) ); 1653 exit; 1637 1654 } 1638 1655
Note: See TracChangeset
for help on using the changeset viewer.