programing

워드프레스 : 이모지로 게시물을 저장하거나 업데이트 할 수 없습니다.

mailnote 2023. 10. 13. 22:23
반응형

워드프레스 : 이모지로 게시물을 저장하거나 업데이트 할 수 없습니다.

저는 000webhost.com 에서 WordPress(v5.4.2) 블로그를 호스팅하고 있으며 이모지 문자로 게시물을 저장할 수 없습니다.이 오류가 발생합니다.Updating failed. Could not update post in the database

wp-config.php에서 이 줄들을 변경해 보았습니다.

define( 'DB_CHARSET', 'utf8mb4' );

define( 'DB_COLLATE', 'utf8mb4_unicode_ci' );

또한 MySQL의 모든 테이블을 다음으로 마이그레이션했습니다.utf8mb4_unicode_ci아래 단계로

하지만 이 중 아무 것도 효과가 없었어요, 제가 놓치고 있는 게 뭐죠?My WordPress 버전: 5.4.2를 도와주세요

wp_encode_emoji()

함수에 이 코드를 추가합니다.php가 고쳐줬어요:

add_filter( 'wp_insert_post_data', function( $data, $postarr ) {
if ( ! empty( $data['post_content'] ) ) {
    $data['post_content'] = wp_encode_emoji( $data['post_content'] );
}
return $data;
}, 99, 2 );

언급URL : https://stackoverflow.com/questions/63100373/wordpress-unable-to-save-or-update-posts-with-emoji

반응형