0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

All-in-One WP Migrationエクスポート時に高度なオプションに自動でチェック

Posted at

サイトをエクスポートする時にMW WP Form等を使っているとメールアドレスを置換されてしまい、意図しないアドレスなってしまう事があります。
以下はエクスポート画面が表示されたら勝手にチェックボックスにチェックしてくれるコードです。



add_action( 'load-toplevel_page_ai1wm_export', 'check_ai1wm_no_email_replace' );

function check_ai1wm_no_email_replace(){
?>
<script>
    window.onload = function() {
        var obj = document.getElementById('ai1wm-no-email-replace');
        obj.checked = !obj.checked;
    };
</script>
<?php
}
?>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?