Skip to content

Instantly share code, notes, and snippets.

@junaidbhura
Created October 7, 2021 20:19
Show Gist options
  • Save junaidbhura/94d2c3c9039a3fd014e307701c74ae6f to your computer and use it in GitHub Desktop.
Save junaidbhura/94d2c3c9039a3fd014e307701c74ae6f to your computer and use it in GitHub Desktop.
Simple WordPress Editor Field
<?php
wp_editor(
$speakers,
'my_field',
array(
'media_buttons' => false,
'textarea_rows' => 5,
'tinymce' => array(
'toolbar1' => 'bold, italic, link',
),
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment