| Server IP : 173.236.233.93 / Your IP : 216.73.217.165 Web Server : nginx/1.28.1 System : Linux dp-9c4aecd272 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64 User : wp_7qsbbu ( 25017242) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/wp_7qsbbu/leadershipcolumbus.org/wp-includes/ |
Upload File : |
<?php
/**
* View Transitions API.
*
* @package WordPress
* @subpackage View Transitions
* @since 7.0.0
*/
/**
* Enqueues View Transitions CSS for the admin.
*
* @since 7.0.0
*/
function wp_enqueue_view_transitions_admin_css(): void {
wp_enqueue_style( 'wp-view-transitions-admin' );
}
/**
* Gets the CSS for View Transitions in the admin.
*
* @since 7.0.0
*
* @return string The CSS.
*/
function wp_get_view_transitions_admin_css(): string {
$affix = SCRIPT_DEBUG ? '' : '.min';
$path = ABSPATH . "wp-admin/css/view-transitions{$affix}.css";
return file_get_contents( $path );
}