# floating-button/5.3.1/admin/fields/editor.php

Floating Button – Easily Create Sticky, Fixed &amp; Floating Buttons, version 5.3.1. 21 lines.

- Page: https://pluginprobe.com/plugins/floating-button/5.3.1/code/admin/fields/editor.php
- Raw: https://pluginprobe.com/plugins/floating-button/5.3.1/raw/admin/fields/editor.php
- Modified: 2023-05-18T16:13:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/floating-button/5.3.1/code/admin/fields/editor.php#L10-L20`.

```php
<?php
/**
 * Template for field editor
 *
 * @package     Wow_Plugin
 * @copyright   Copyright (c) 2018, Dmytro Lobov
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since       1.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$settings = array(
	'wpautop'       => 0,
	'textarea_name' => '' . $name . '',
	'textarea_rows' => 15,
);

wp_editor( $val, $id, $settings );
```
