2017 © Pedro Peláez
 

wordpress-plugin acf-move-wp-editor

A simple ACF Field that moves the WordPress content editor of a post or page to the location of this field.

image

log1x/acf-move-wp-editor

A simple ACF Field that moves the WordPress content editor of a post or page to the location of this field.

  • Friday, September 15, 2017
  • by Log1x
  • Repository
  • 1 Watchers
  • 6 Stars
  • 36 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 2 Versions
  • 9 % Grown

The README.md

ACF Move WP Editor

Packagist Packagist Downloads, (*1)

This is a simple ACF Field that moves the WordPress content editor of a post or page to the location of this field., (*2)

This can be useful for cleaning up your Edit Post screen with something like ACF tabs:, (*3)

Example, (*4)

Installation

Install ACF Move WP Editor using Composer:, (*5)

$ composer require log1x/acf-move-wp-editor

The filters below remove the TinyMCE editor feature that expands its container to the height of the content as well as removes the option from the Help menu., (*6)

/**
 * Unregister the editor expand script.
 *
 * @return void
 */
add_action('admin_init', function () {
    wp_deregister_script('editor-expand');
});

/**
 * Disable TinyMCE's autoresize.
 *
 * @param  array $init
 * @return array
 */
add_filter('tiny_mce_before_init', function ($init) {
    unset($init['wp_autoresize_on']);
    return $init;
});

The Versions

15/09 2017

dev-master

9999999-dev https://github.com/log1x/acf-move-wp-editor

A simple ACF Field that moves the WordPress content editor of a post or page to the location of this field.

  Sources   Download

MIT

The Requires

 

The Development Requires

wordpress

14/09 2017

v1.0.0

1.0.0.0 https://github.com/log1x/acf-move-wp-editor

A simple ACF Field that moves the WordPress content editor of a post or page to the location of this field.

  Sources   Download

MIT

The Requires

 

The Development Requires

wordpress