Home 워드프레스 워드프레스 회원 가입일 순으로 보기

워드프레스 회원 가입일 순으로 보기

by maxblog
0 comment
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';
}

워드프레스는 현재 기본적으로 오래된 순으로 보여져서 회원이 많을 경우 최신 가입자가 아래로 내려가
많이 불편할 때가 있다.

테마의 functions.php 파일의 하단에 위와 같은 코드를 넣어주면 최신 가입한 회원이 위로 올라오게 된다.
DESC 부분을 ASC로 바꾸면 반대로 작동한다.

위 코드 넣고 회원 리스트 보면 한방에 시원하게 최신 가입자가 위에 오는 것을 볼수 있다…
끝..😀

좋아할만한 추천 글

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.