PluginProbe
Float menu – awesome floating side menu / 4.0
Float menu – awesome floating side menu v4.0
7.2.5 trunk 2.1 2.2 3.0.1 3.1 3.2.2 3.3.1 3.5 3.5.1 3.5.2 3.5.3. 3.5.4 4.0 4.1 4.1.1 4.2 4.3 4.3.1 4.3.2 5.0 5.0.1 5.0.2 5.0.3 5.1 All 57 releases
float-menu / admin / fields / editor.php

editor.php in Float menu – awesome floating side menu 4.0, at admin/fields/editor.php

21 lines 404 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for field editor
4 *
5 * @package Wow_Plugin
6 * @copyright Copyright (c) 2018, Dmytro Lobov
7 * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
8 * @since 1.0
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit;
13 }
14
15 $settings = array(
16 'wpautop' => 0,
17 'textarea_name' => '' . $name . '',
18 'textarea_rows' => 15,
19 );
20
21 wp_editor( $val, $id, $settings );