idx
↑
Path: /homepages/33/d963113317/htdocs/clickandbuilds/PartnercomAgency
[↑]
..
[open]
x
r
.htaccess
[edit]
x
r
.metadata
[open]
x
r
favicon.ico
[edit]
x
r
index.php
[edit]
x
r
license.txt
[edit]
x
r
link.php
[edit]
x
r
php.ini
[edit]
x
r
readme.html
[edit]
x
r
wp-activate.php
[edit]
x
r
wp-admin
[open]
x
r
wp-blog-header.php
[edit]
x
r
wp-comments-post.php
[edit]
x
r
wp-config-sample.php
[edit]
x
r
wp-config.php
[edit]
x
r
wp-content
[open]
x
r
wp-cron.php
[edit]
x
r
wp-includes
[open]
x
r
wp-links-opml.php
[edit]
x
r
wp-load.php
[edit]
x
r
wp-login.php
[edit]
x
r
wp-mail.php
[edit]
x
r
wp-settings.php
[edit]
x
r
wp-signup.php
[edit]
x
r
wp-trackback.php
[edit]
x
r
xmlrpc.php
[edit]
x
r
Edit: view-transitions.php
<?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 ); }
save