| Server IP : 77.68.64.20 / Your IP : 216.73.216.176 Web Server : Apache System : Linux hp3-wp-1011484.hostingp3.local 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64 User : csh2668037 ( 2112352) PHP Version : 7.4.33 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/domains/vol3/223/3261223/user/htdocs/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 );
}