WordPress 글쓰기 기본 가시성을 비공개로 지정하기

Just discovered how to do this:

For this, you need to edit the file ‘meta-boxes.php’ located in wp-admin/includes/ folder.

Open that file in NotePad and find the following code:

$visibility = 'public';
$visibility_trans = __('Public');

Now, all you need to do is change it do the following:

$visibility = 'private';
$visibility_trans = __('Private');

Done.

 

서진우

슈퍼컴퓨팅 전문 기업 클루닉스/ 상무(기술이사)/ 정보시스템감리사/ 시스존 블로그 운영자

You may also like...