Содержимое wp_editor не отображается в опции темы

Я пытаюсь вставить wp_editor. Все хорошо, но контент не отображается после сохранения контента.

function display_slogan_element() {
$editor_id = "home_slogan";
$editor_class = "slogan";
$textarea_name = "slogan";
$content = get_post_meta( $post->ID, 'slogan', true);
$settings = array('teeny'=> TRUE);

wp_editor( $content, $editor_id, $settings = array() );

}

Я не уверен, в чем проблема. Кто-нибудь может мне помочь?

1

Решение

Можете ли вы определить global $post; после проверки?

Например :

function display_slogan_element() {
global $post;
$editor_id = "home_slogan";
$editor_class = "slogan";
$textarea_name = "slogan";
$content = get_post_meta( $post->ID, 'slogan', true);
$settings = array('teeny'=> TRUE);

wp_editor( $content, $editor_id, $settings = array() );

}
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]