MENU
  •   ワーク
    •   特殊美術
    •   舞台美術
    •   宣伝美術
  •   お知らせ
    •   公演案内
  •   アーカイブ
    •   groschat
  •   ぶいログ
    •   SWELL
    •   うぇぶ万覚帳
    •   ぎんたノート
      •   ドレッサー演出ノート
  •   なぎさの遁走日記
    •   怪猫見参!
    •   伝説の少女
    •   なぎさ写真
groschat online
  •   ワーク
    •   特殊美術
    •   舞台美術
    •   宣伝美術
  •   お知らせ
    •   公演案内
  •   アーカイブ
    •   groschat
  •   ぶいログ
    •   SWELL
    •   うぇぶ万覚帳
    •   ぎんたノート
      •   ドレッサー演出ノート
  •   なぎさの遁走日記
    •   怪猫見参!
    •   伝説の少女
    •   なぎさ写真
groschat online
  •   ワーク
    •   特殊美術
    •   舞台美術
    •   宣伝美術
  •   お知らせ
    •   公演案内
  •   アーカイブ
    •   groschat
  •   ぶいログ
    •   SWELL
    •   うぇぶ万覚帳
    •   ぎんたノート
      •   ドレッサー演出ノート
  •   なぎさの遁走日記
    •   怪猫見参!
    •   伝説の少女
    •   なぎさ写真
  1. ホーム
  2. ぶいログ
  3. うぇぶ万覚帳
  4. wordpress プラグイン PS Disable Auto Formatting のWP4.3での不具合。

wordpress プラグイン PS Disable Auto Formatting のWP4.3での不具合。

2016 1/12
うぇぶ万覚帳
2016-01-12

自動成形プラグイン「PS Disable Auto Formatting」の不具合。

「wp4.3」でエディタ切り替え時の不具合があるらしい。

参考サイト

あわせて読みたい
PS Disable Auto Formattingが効かないエラーの修復方法!プラグイン改造でWordPressアップデート後も使え… WordPressのセキュリティーを向上させるためにアップデートによるバージョンアップはかなり重要です。ところが、WordPressを最新版にインストールした後、「ビジュアルエデ…

対応策は、「PS Disable Auto Formatting」の「ps_disable_auto_formatting.php」を編集して、「construct」メソッド内の「print_scripts_arrayのadd_filter」をコメントアウトする。

function __construct() {
global $wp_version;

if ( version_compare( $wp_version, '2.5', '>=' ) ) {
add_action( 'init' , array( $this, 'disable_auto_formatting_init' ) );
add_action( 'admin_menu', array( $this, 'add_disable_formatting_setting_page') );
//add_filter( 'print_scripts_array', array( $this, 'rewrite_default_script' ) );
add_filter( 'wp_insert_post_data', array( $this, 'formatting_quickpress_post' ) );
add_action( 'media_buttons', array( $this, 'check_edit_mode_and_add_richedit_pre' ), 9 );
add_action( 'media_buttons', array( $this, 'delete_filtering_wp_richedit_pre' ) );
} else {
add_action('admin_notices' , array( $this, 'version_too_old' ) );
}
}
うぇぶ万覚帳
プラグイン
  • URLをコピーしました!


wordpress プラグイン PS Disable Auto Formatting のWP4.3での不具合。

2016 1/12
うぇぶ万覚帳
2016-01-12