I'm trying to change the default theme editor (
Код: Выделить всё
jqteHere is the code I'm trying to use:
Код: Выделить всё
ob_start();
$editor_id = 'ad_description'; // Unique ID for the editor
$settings = array(
'textarea_name' => 'job_description', // Name of the textarea field
'textarea_rows' => 10, // Number of rows for the textarea
'media_buttons' => true, // Whether to include media upload buttons
'quicktags' => true, // Whether to include quicktags (HTML shortcuts)
);
wp_editor($description, $editor_id, $settings);
$output = ob_get_contents();
echo $output;
Код: Выделить всё
$descriptionКод: Выделить всё
$descriptionКод: Выделить всё
$post = get_post($job_id);
$description = $post->post_content;
Код: Выделить всё
ob_get_clean()I appreciate any help. Thanks!
Источник: https://stackoverflow.com/questions/781 ... t-captured
Мобильная версия