保存草稿时,管理侧边栏重叠在编辑器上

时间:2018-09-26 作者:Mubashar Aftab

我有一个奇怪的问题。每次我保存草稿时,侧栏的黑色区域就会出现,并与编辑器重叠,使编辑器无法使用。它还尝试重复保存草稿,唯一的方法是刷新页面。请参考下图。inspecting it revealed nothing odd though

有人知道怎么解决这个问题吗?

2 个回复
最合适的回答,由SO网友:OzTheGreat 整理而成

这里是WP本地文章的作者。这通常是因为其他插件错误地混淆了标签,并阻止它设置正确的URL。如果您将下面的代码另存为一个单独的文件,请将其作为插件上载并激活,这样应该可以修复它。

<?php
/**
 * Plugin Name: WPNA Editor Fix
 * Description: Fix the base URL meta field that other plugins break.
 * Author: OzTheGreat (WPArtisan)
 * Author URI: https://wpartisan.me
 * Version: 1.0.1
 * Plugin URI: https://wp-native-articles.com
 *
 * @package wpna-editor-fix
 */

add_action( \'admin_footer-post.php\', \'wpna_custom_fix_base_url\' );
add_action( \'admin_footer-post-new.php\', \'wpna_custom_fix_base_url\' );

function wpna_custom_fix_base_url(){
    ?>
    <script>
        if ( window.history.replaceState ) {
            var bases = document.getElementsByTagName(\'base\');
            if (bases.length > 0) {
                bases[0].href = document.getElementById( \'wp-admin-canonical\' ).href + window.location.hash;
            }
        }
    </script>
    <?php
}

SO网友:Mubashar Aftab

好吧,我发现了!这是由WP Native Articles的高级插件引起的。我现在正在与开发人员交谈,如果有任何具体内容,我将在这里更新。

结束

相关推荐

Post Auto Draft Issue

我创建了没有标题和编辑器的自定义帖子类型,并使用自定义分类法、自定义字段和附件来形成帖子。我的标题是从自定义分类法和自定义字段生成的(如果未设置其他内容,则为“ID#”)。以下是标题代码(可能需要一些修饰):function custom_post_type_title ( $post_id ) { global $wpdb; if ( get_post_type( $post_id ) == \'cars\' ) { $autos = wp_get