All Projects → Log1x → acf-move-wp-editor

Log1x / acf-move-wp-editor

Licence: other
This is a simple ACF Field that moves the WordPress content editor of a post or page to the location of this field.

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to acf-move-wp-editor

acf-field-boilerplate
Modernized PSR-2 boilerplate for creating custom fields for ACF5.
Stars: ✭ 54 (+68.75%)
Mutual labels:  acf, acf-field
acf-conditional-logic-advanced
Advanced Custom Fields - Conditional Logic Advanced
Stars: ✭ 31 (-3.12%)
Mutual labels:  acf, acf-field
acf-image-aspect-ratio-crop
Image Aspect Ratio Crop field for Advanced Custom Fields
Stars: ✭ 100 (+212.5%)
Mutual labels:  acf, acf-field
acf-phone-number
A real ACF phone number field powered by libphonenumber and intl-tel-input
Stars: ✭ 68 (+112.5%)
Mutual labels:  acf, acf-field
Acf Tools
Advanced Custom Fields code made simple! 🙌
Stars: ✭ 121 (+278.13%)
Mutual labels:  acf
Acf Builder
An Advanced Custom Field Configuration Builder
Stars: ✭ 492 (+1437.5%)
Mutual labels:  acf
Acf Quickedit Fields
WordPress Plugin implementing Column Displaying, QuickEdit and BulkEdit for Advanced Custom Fields (ACF)
Stars: ✭ 328 (+925%)
Mutual labels:  acf
Acf Pro Installer
A composer install helper for Advanced Custom Fields PRO
Stars: ✭ 265 (+728.13%)
Mutual labels:  acf
Acf Extended
ACF Extended Plugin
Stars: ✭ 199 (+521.88%)
Mutual labels:  acf
React Wp Rest
A boilerplate for pairing the WP Rest API with a server-rendered React app
Stars: ✭ 167 (+421.88%)
Mutual labels:  acf
Plate
Plate: a super stripped-down WordPress starter theme for developers.
Stars: ✭ 110 (+243.75%)
Mutual labels:  acf
Wp Vuejs
WordPress VueJS Starter Theme
Stars: ✭ 19 (-40.62%)
Mutual labels:  acf
Acf Composer
Compose ACF Fields, Blocks, Widgets, and Option Pages with ACF Builder on Sage 10
Stars: ✭ 124 (+287.5%)
Mutual labels:  acf
Flynt
Component based WordPress starter theme, powered by ACF Pro and Timber, optimized for a11y and fast page load results.
Stars: ✭ 363 (+1034.38%)
Mutual labels:  acf
Private Composer Installer
Composer install helper outsourcing sensitive keys from the package URL into environment variables
Stars: ✭ 168 (+425%)
Mutual labels:  acf
Drishti
Real time eye tracking for embedded and mobile devices.
Stars: ✭ 325 (+915.63%)
Mutual labels:  acf
Fewbricks
Write code to create ACF field groups, fields and re-usable modules.
Stars: ✭ 100 (+212.5%)
Mutual labels:  acf
Acf Builder Cheatsheet
A cheatsheet for use with ACF Builder.
Stars: ✭ 157 (+390.63%)
Mutual labels:  acf
Acf Star Rating Field
A simple star rating field for ACF.
Stars: ✭ 94 (+193.75%)
Mutual labels:  acf
Acf To Rest Api
Exposes Advanced Custom Fields Endpoints in the WordPress REST API
Stars: ✭ 1,152 (+3500%)
Mutual labels:  acf

ACF Move WP Editor

Packagist Packagist Downloads

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

This can be useful for cleaning up your Edit Post screen with something like ACF tabs:

Example

Installation

Install ACF Move WP Editor using Composer:

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

Recommended Filters

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.

/**
 * 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;
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].