Remove inline linking tool

时间:2016-05-13 作者:Nico Martin

我不太喜欢WP 4.5发布的内联链接工具。有没有办法禁用它?

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

因此,我可能会也可能不会为此下地狱,但我制作了一个快速修复插件,绕过内联部分,只打开链接编辑器。

你可以找到它here.

我没有花太多时间测试它,如果您发现github中存在问题,我会看看是否可以修复它。

它的工作方式是,我将wplink作为插件从tinyMCE中删除,然后添加了wplinkc,这是我通过复制wplink并删除大部分代码而完成的。

编辑:今天晚些时候,我意识到了另一个解决方案,它看起来有点干净,而且肯定没有我的那么粗糙。

https://github.com/2ndkauboy/restore-full-link-dialog

不过我还没试过。

编辑#2:现已找到实际正确的插件here, 这就完成了工作。

SO网友:Rodney Lacambra

这可能有助于您禁用此快捷方式。尝试将此添加到functions.php 文件

function disable_mce_wptextpattern( $opt ) {

    if ( isset( $opt[\'plugins\'] ) && $opt[\'plugins\'] ) {
        $opt[\'plugins\'] = explode( \',\', $opt[\'plugins\'] );
        $opt[\'plugins\'] = array_diff( $opt[\'plugins\'] , array( \'wptextpattern\' ) );
        $opt[\'plugins\'] = implode( \',\', $opt[\'plugins\'] );
    }

    return $opt;
}

add_filter( \'tiny_mce_before_init\', \'disable_mce_wptextpattern\' );
如果有帮助,请告诉我。

相关推荐

第一次提交时WP-EDITOR为空

我在一个简单的插件中使用wp编辑器,但我遇到了一个问题,第一次点击提交按钮时,数据库中的内容是空白的。<?php $editor_id = \'mycontent\'; wp_editor($content, $editor_id ); ?> 因此,我尝试使用以下内容提醒内容:if (j(\".wp-content-wrap\").hasClass(\"tmce-active\")){ alert(