Wordpress

워드프레스에서 글 자동저장 시간 및 갯수 변경하기

워드프레스에서 글 자동저장 시간 및 갯수 변경하기 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, #리비전, #워드프레스, #자동저장

워드프레스에서 요약글을 글자수로 자르기

워드프레스에서 요약글을 글자수로 자르기 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', ''); …

워드프레스에서 요약글을 글자수로 자르기 Read More »

워드프레스에서 날짜 포맷 변경하기

워드프레스에서 날짜 포맷 변경하기 $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));

Scroll to Top