Front-end Editor for WordPress

Description

Features

  • Draft and edit posts.
  • Autosaves. Just publish when you’re done.
  • Contextual tools. Bold, italic, strikethrough, link, headings, lists and blockquote.
  • Add media with the WordPress media library.
  • Handy shortcuts for lists (*, – or 1.), blockquote (>) and horizontal rule (—).
  • Automatically embed media from this list. Just paste the URL.
  • You can also link text by just pasting the URL over it.
  • Add a featured image, if your theme supports it.

Configure and extend

This plugin is designed to be “plug and play”, but also configurable and extensible.

Toolbars and buttons

You can add more buttons to any of the toolbars with the following filters:

  • fee_toolbar_caret for the caret,
  • fee_toolbar_inline for normal selections,
  • fee_toolbar_block for block selections.

E.g.

add_filter('fee_toolbar_inline', function($buttons){
  return array_merge($buttons, array('subscript'));
});

You may need to provide extra CSS and JS. See the Codex page and TinyMCE docs for more information about adding toolbar buttons with TinyMCE.

Linking to the editor

You can link to the editor from anywhere on the website with the normal edit link to the admin, and it will be picked up by the plugin. Use edit_post_link or similar.

Custom Post Types Support

add_post_type_support( 'page', 'front-end-editor' );

Please make sure you also support the REST API.

Disable

If you’d like to disable the editor for certain posts, you can use the supports_fee filter.

// Disable for the post with ID 1.
add_filter('supports_fee', function($supports, $post) {
  return $post->ID !== 1;
}, 10, 2);

Avis

Perfec plugin editor frontend

PROS: Incredibly easy to install and use, without doubt the best editing plugin in front.

CONS: When adding a video to the entries page, it stays blank and until you do not post it does not look … There is a problem adding videos

THANKS FOR THE PLUGIN!!

Less than thrilled.

Pros:

  • Easy to install.
  • Works.

Cons:

  • Broke Jetpack Custom CSS
  • Requires REST API
  • Doesnt register Custom Admin Boxes

Nice job !

Simple is the best!!!!!!!!

Just wondering if it will support inserting images?
And what if I want to write HTML directly??

A fantastic tool for everyday blogging

I’m so happy to see someone continuing the journey of a viable front end editor for WordPress. I’ve used it while composing my last few posts and it behaved flawlessly. Cheers to the developers. It’s fast, responsive, and a joy to use.

Nice, but with UI issues

The plugin works fine and has rather elegant features (such as the mini-editor toolbar that appears when you select some text), but there’s a glaring UI issue in the location of the validation button: it should be put in place of the edit link (on which you click to toggle the editing mode) rather than being located on the WordPress toolbar. Like a lot of the 1-star reviewers, I’ve found myself very much puzzled the first time I edited some text, trying to find out how I could toggle back to the normal mode.

If that little issue were to be fixed, that would definitely make this plugin a 5-star for me.

Read all 65 reviews

Contributeurs & développeurs

“Front-end Editor for WordPress” is open source software. The following people have contributed to this plugin.

Contributeurs

“Front-end Editor for WordPress” has been translated into these 5 locales: Japanese, Brazilian Portuguese, Spanish, English (UK), English (Canada). Thank you to the translators for their contributions.

Translate “Front-end Editor for WordPress” into your language.

Interested in development?

Browse the code or subscribe to the development log by RSS.