워드프레스 관리자 이메일 및 비밀번호 수정
사용자 조회 $blogusers = get_users(); // Array of WP_User objects. foreach ( $blogusers as $user ) { echo "[{$user->ID}] {$user->user_login}: {$user->user_email}"; } 비밀번호 수정 wp_set_password( 'password', 'username' ); 관리자 이메일 …
사용자 조회 $blogusers = get_users(); // Array of WP_User objects. foreach ( $blogusers as $user ) { echo "[{$user->ID}] {$user->user_login}: {$user->user_email}"; } 비밀번호 수정 wp_set_password( 'password', 'username' ); 관리자 이메일 …
워드프레스에서 업로드 사이즈 제한하기 function limit_upload_size() { add_filter('wp_handle_upload_prefilter', function ($file) { $file_size_limit = 1024; // 1MB in KB if (!current_user_can('manage_options')) { $current_size = $file['size']; $current_size = $current_size / 1024; //get …
워드프레스에서 글 자동저장 시간 및 갯수 변경하기 Edit wp-config.php define( 'WP_POST_REVISIONS', 3 ); define( 'AUTOSAVE_INTERVAL', 300 ); Reference https://wordpress.org/documentation/article/revisions/ Post Tags: #autosave, #revisions, #WordPress, #wp, #리비전, #워드프레스, #자동저장
워드프레스에서 메모리 제한 늘리기 Edit .htaccess # PHP Configuration php_value memory_limit 256M php_value post_max_size 100M php_value upload_max_filesize 100M php_value max_execution_time 600 php_value max_input_vars 3000 php_value max_input_time 300 # END PHP …
워드프레스에서 WP MAIL SMTP 설정 Amazon SES를 사용하여 전송하는 이메일이 스팸으로 표시되는 이유는 무엇입니까? Authenticating Email with SPF in Amazon SES The name of the record can be blank or …
워드프레스에서 요약글을 글자수로 자르기 Usage custom_text_length_sub(get_the_title(), 80); custom_excerpt_length_sub(get_the_excerpt(), 80); Function iconv: function custom_text_length_sub($text_fun, $text_length) { $excerpt = $text_fun; $charlength = $text_length; if (iconv_strlen($excerpt) > $charlength) { $excerpt_more = apply_filters('excerpt_more', ''); …
워드프레스 .htaccess 설정하기 Redirect https <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] </IfModule> Remove subdomain www <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ …
워드프레스 블록에디터 비활성화하기 모든 글에서 비활성화하기 /* * Filters whether a post is able to be edited in the block editor. * * @see https://developer.wordpress.org/reference/hooks/use_block_editor_for_post/ */ add_filter('use_block_editor_for_post', '__return_false'); 특정 글에만 …
워드프레스에서 최대 업로드 사이즈 변경하기 function max_upload_size($limit = 2000) { if (!is_admin()) { return; } add_filter('upload_size_limit', function () use ($limit) { return $limit * 1024; }); }
워드프레스에서 날짜 포맷 변경하기 $dt_gmt = get_the_author_meta('user_registered', $user_id); $dt = get_date_from_gmt($dt_gmt, 'Y-m-d H:i:s'); echo date_i18n('Y-m-d H:i:s', strtotime($dt));