gpt4 book ai didi

php - WordPress 管理员导航出现问题

转载 作者:行者123 更新时间:2023-12-04 08:06:14 25 4
gpt4 key购买 nike

我在使用 WordPress 管理面板时遇到一些奇怪的行为。 CSS 似乎由于某种原因出现了问题。我根本没有接触过核心文件。当我单击“帖子”或“页面”等链接时,它看起来像这样。如果我刷新页面,它就会恢复正常。这是屏幕截图:

enter image description here

任何帮助都会很棒。干杯

最佳答案

这不是 WordPress 错误,而是 Chrome 错误。

您可以关注票务追踪器 here

在新的 Chrome 版本发布之前,有几种解决方法可以解决此问题。

通过您的 functions.php 文件或使用插件添加 follow Hook 。

解决方法 1

add_action('admin_enqueue_scripts', 'chrome_fix');
function chrome_fix() {
if ( strpos( $_SERVER['HTTP_USER_AGENT'], 'Chrome' ) !== false )
wp_add_inline_style( 'wp-admin', '#adminmenu { transform: translateZ(0); }' );
}

<强> Source

解决方法 2

In Chrome, go to chrome://flags/#disable-slimming-paint Enable the "disable slimming paint" setting and ensure that the "enable-slimming-paint" setting immediately below it is not turned on. Chrome will need to Relaunch to save the setting. Once you have done so, the bug is gone.

<强> Source

关于php - WordPress 管理员导航出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32387491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com