Home 워드프레스 워드프레스 회원리스트에서 가입일 보기

워드프레스 회원리스트에서 가입일 보기

by maxblog
0 comment

워드프레스 관리자 모드에서 회원리스트를 보면 가입일이 기본적으로는 안나와서 불편할 때가 있다.
이런경우 다음의 코드를 functions.php 테마 파일에 추가해주면 된다.

add_filter('manage_users_columns', 'my_manage_users_columns', 10, 1);
function my_manage_users_columns($columns) {
	$columns['user_registered'] = 'Registered';
	return $columns;
}

add_filter('manage_users_custom_column', 'my_manage_users_custom_column', 10, 3);
function my_manage_users_custom_column($output, $column_name, $user_id){
	if($column_name == 'user_registered'){
		$user = new WP_User($user_id);
		
		$timezone = date_default_timezone_get();
		$date = new DateTime($user->user_registered, new DateTimeZone($timezone));
		$date->setTimeZone(new DateTimeZone('Asia/Seoul'));
		
		return $date->format('Y-m-d H:i:s');
	}
	return $output;
}

좋아할만한 추천 글

Leave a Comment

Soledad is the Best Newspaper and Magazine WordPress Theme with tons of options and demos ready to import. This theme is perfect for blogs and excellent for online stores, news, magazine or review sites.

Buy Soledad now!

Edtior's Picks

Latest Articles

ⓒ 2023.  FUNCOM all rights reserved.