357
// 펀컴 수정 ---------------------------------------------------------------- add_action('admin_head', 'my_custom_fonts'); function my_custom_fonts() { echo '<style> body, td, textarea, input, select { .notice, div.error, div.updated { display: none; } #adminmenu a, #catlist a, #taglist a { text-decoration: none; font-weight: 300; } #wpadminbar { background: #849098; } #cpto #cpt_info_box { display: none; } /* 포스트 폴더 플러그인 CSS 수정 */ .wicked-selected > .wicked-folder { background: #0031c6 !important; } .wicked-selected > .wicked-folder { padding: 5px; border-radius: 5px; font-size: 12px !important; } .wicked-tree { font-size: 13px; } .row-title { font-size: 13px !important; } } </style>'; } // 회원 가입일 순으로 보기 add_action( 'pre_user_query', 'tgm_order_users_by_date_registered' ); function tgm_order_users_by_date_registered( $query ) { global $pagenow; if(!is_admin() || 'users.php' !== $pagenow){ return; } $query->query_orderby = 'ORDER BY `user_registered` DESC'; }