【发布时间】:2023-12-21 14:45:01
【问题描述】:
【问题讨论】:
【问题讨论】:
您必须将普通文本框转换为 wp 编辑器
//custom field
$custom_shot_content_timer = get_post_meta( $post->ID, 'custom_shot_content_timer', true );
//wp text editor
$settings = array( 'textarea_name' => 'custom_shot_content_timer' );
$editor_id = 'custom_shot_content_timer';
$content = $custom_shot_content_timer;
wp_editor( $content, $editor_id, $settings );
//wp text editor
【讨论】: