sting welcart 発売日 アーティスト 表示オプション消える件 でやっても効果なかったが、 管理画面にJクエリで チェックボックスを強制にチェックさせる

ファンクション

1
2
3
4
5
6
7
//管理画面に任意のjs
//function my_jquery($hook) {
//  //if($hook == 'edit.php'){
//      wp_enqueue_script('custom_admin_script', get_bloginfo('template_url').'/d_admin/my_jquery.js', array('jquery'));
//  //}
//}
//add_action('admin_enqueue_scripts', 'my_jquery');

my_jquery.js

1
2
3
4
5
6
7
8
9
(function($) {
 $(document).ready(function(){
    //Write jQuery script here
  // alert('hoge');
       
//   $('[name="artistdiv-hide"]').prop('checked',false);
//   $('[name="artistdiv-hide"]').prop('checked',true);
 });
})(jQuery);

https://qiita.com/i47_rozary/items/db77352cc0af8d05d39a


https://www.p-nt.com/technicblog/archives/82
https://techacademy.jp/magazine/9494