'; echo 'body.wp-admin .wrap h1 a { display: none; }'; echo 'body.wp-admin .wrap .page-title-action { display: none; }'; echo ''; self::after_do_function( __FUNCTION__ ); } public static function hide_search_box() { if( ! self::is_do_function( __FUNCTION__ ) ) { return false; } $setting_data = self::get_setting_data(); if( empty( $setting_data['hide_search_box'] ) ) { return false; } echo ''; self::after_do_function( __FUNCTION__ ); } public static function users_per_page( $per_page ) { if( ! self::is_do_function( __FUNCTION__ ) ) { return $per_page; } $setting_data = self::get_setting_data(); if( empty( $setting_data['per_page_num'] ) ) { return $per_page; } $per_page = $setting_data['per_page_num']; self::after_do_function( __FUNCTION__ ); return $per_page; } } MywpControllerModuleAdminUsers::init(); endif;