Advanced Editor full (ok)
https://help.edublogs.org/advanced-editor-tools-plugin/
Last updated
https://help.edublogs.org/advanced-editor-tools-plugin/
Last updated
Xem công cụ này :) https://wordpress.org/plugins/black-studio-tinymce-widget/
Đọc thêm: https://wordpress.org/plugins/tools-engine/
Hoặc có thể dùng
The content editor is a key part of WordPress. It allows users to create and manage their content, galleries and videos, in a Visual WYSIWYG (what you see is what you get) view.
It also comes with a Text view, which allows users to insert or amend HTML within their content.
The WordPress Visual Editor is powered by the TinyMCE editor control, which provides the WYSIWYG view, as well as the formatting buttons you see:
Thanks to the TinyMCE API and WordPress’ filter hooks, we can add our own functionality to the WordPress Visual Editor. Specifically, we’ll look at how to create and register a custom TinyMCE Plugin which wraps selected text in a CSS class.
6.2MHere's what happens when you run sudo rm -rf / in Linux?
In your WordPress website, create the wp-content/plugins/tinymce-custom-class
folder.
We’ll store our plugin’s files here, so next create a file called tinymce-custom-class.php
, using the following code:
This gives WordPress some information about our Plugin, and sets up our construct, where we’ll register our TinyMCE actions and filters.
TinyMCE provides two key filters for registering an element on the Visual Editor toolbar:
mce_external_plugins
: Used to load external TinyMCE plugins (https://codex.wordpress.org/Plugin_API/Filter_Reference/mce_external_plugins)
mce_buttons
: Used to add/remove buttons to the TinyMCE toolbar (https://codex.wordpress.org/Plugin_API/Filter_Reference/mce_buttons,mce_buttons_2,mce_buttons_3,_mce_buttons_4)
Before we call these filters, we want check we’re in the WordPress Administration screens. Add the following code to the __construct
:
Next, add the setup_tinymce_plugin
function to perform some further checks:
This checks if the current logged in WordPress user can edit Posts or Pages. If they can’t, there’s no point in registering our TinyMCE Plugin for that User, as they’ll never see the Visual Editor.
We then check if the user is using the Visual Editor, as some WordPress users turn this off via Users > Your Profile. Again, if the user is not using the Visual Editor, we return (exit) the function, as we don’t need to do anything else.
If the above checks pass, the two TinyMCE WordPress Filters are registered – mce_external_plugins
and mce_buttons
.
The first filter – mce_external_plugins
– allows us to register the TinyMCE JavaScript Plugin file that will interact with the Visual Editor. Let’s add a function call for this filter, inside our class:
Here, we register a JavaScript file within the $plugin_array
, which contains all TinyMCE JavaScript plugins.
The second filter – mce_buttons
– tells TinyMCE that we’d like to register a button in the Visual Editor. Again, let’s add a function call for this filter, inside our class:
This registers the programmatic name for our TinyMCE button (custom_class
).
When we called mce_external_plugins
, we referenced a JavaScript file. We now need to create that file, and add some JavaScript code to it. This will tell TinyMCE how to output the button, and what to do when it’s clicked.
Create a new file in the plugin folder called tinymce-custom-class.js
, inserting the following code:
This JavaScript function performs a few actions:
It calls the TinyMCE Plugin Manager class, which we can use to perform a number of TinyMCE plugin related actions. Specifically, we’re adding our plugin to TinyMCE using the add
function.
Within the add
routine, we have access to the Visual Editor through the editor
instance. We register our button using the addButton
function, which comprises of a title, command and icon image.
Finally, we register a command using the addCommand
function, which shows an alert telling us when our button was clicked.
We’ll need to also include the icon.png
image within our Plugin folder – this is the icon image that will be used for the button:
Save your code, and activate your Plugin in WordPress Administration > Plugins.
Next, create or edit a Page or Post, and you’ll hopefully see your button with the icon:
Click the button, and you’ll see the Button clicked! alert:
Let’s replace the alert with a prompt, asking the user for the CSS class name they want to wrap around the selected text in the Visual Editor:
This command performs a few sanity checks, to make sure the user selected some text, entered a CSS class name and didn’t cancel the process.
If those checks pass, we then run the editor’s execCommand
function, to replace the selected text, with the selected text wrapped in a span tag which includes the inputted CSS class.
If everything worked, switch to the ‘Text’ view, and you’ll see your selected text is now wrapped in a span tag:
We’ve created a WordPress Plugin to add a button to the TinyMCE Visual Editor. In this process, we’ve explored the filters WordPress uses for integration with TinyMCE, as well as the JavaScript code needed to add a button and perform an action when clicked.
To download the complete source code, visit the GitHub repository or the direct ZIP file download link.
In the next article, we’ll cover some more advanced steps that we can take to customize our TinyMCE plugin further.
The Advanced Editor Tools Plugin, previously known as TinyMCE Advanced, increases the number of formatting tools such as tables, emoticons and custom font families that are available and gives you more control of which tools are included on the visual editor on the classic block or in the classic editor.
Once you’ve activated the Advanced Editor Tools Plugin in Plugins > All it automatically replaces the default WordPress Visual editor with the Advanced Editor Tools which looks like this if you are using the classic block in the block editor and also adds a classic paragraph block.
It looks like this if you are using the classic editor.
The Advanced Editor Tools is composed of:
Editor menu
Toolbars
When the editor menu is enabled most of the items appear as menu items under a drop down menu on the editor menu.
Most of the menu items on the Editor menu are self explanatory and we’ve included a summary of the less obvious menu items below:
File > Print: used to print a copy of post/page.
Insert > Insert date/time: used to quickly add the date or time.
Insert > Anchor: Anchors are used to allow readers to jump to a specific part of a web page and are useful to create an index at the top of long pages.
Tables: Allows you to quickly add, edit and format tables. Tables can be added using a table block if you are using the block editor.
The default WordPress Visual editor has two toolbars. The Advanced Editor Tools can have up to four toolbars.
You configure your Advanced Editor Tools in Settings > Advanced Editor Tools (Tiny MCE Advanced).
How you configure depends on if you are using the block editor or the classic editor.
The following section explains how configure the Advanced Editor Tools if you are using the block editor. If you are using the classic editor, refer to the classic editor section.
Toolbars for the block editor
The Advanced Editor tools automatically adds Clear formatting and Mark to the drop down menu on the paragraph block‘s toolbar and moves Subscript, Superscript and Text Color from the drop down menu in the toolbar to the block settings in the editor sidebar and adds an underline option.
You drag and drop the options between the main toolbar’s drop down menu and the alternative side toolbar to change and reorder which items appear in the paragraph block toolbar drop down menu and block settings in the editor sidebar.
Remember to click Save Changes each time you make a change.
Any item you want removed from the paragraph block’s toolbar and block settings in the editor sidebar you drag and drop into the Unused buttons for blocks toolbar area.
“Enable setting of selected text color” and “Enable setting of selected text background color” can be changed to No as the latest version of WordPress already includes these options.
Toolbars for the Classic Paragraph and Classic blocks
The classic block looks like the classic editor but it is in block form and is narrower than the classic editor.
For best results enable the editor menu and only add essential items to the toolbar.
Here’s what the classic block looks like when the Advanced Editor tools plugin is activated.
You remove buttons from the toolbar by dragging the buttons from the toolbar and dropping them into the Unused button area. You add buttons by dragging the buttons from the Unused button area to the toolbar.
Options
List Style Options extend your bulleted and numbered list options.
Clicking on the drop down arrow next to the Bulleted list icon or Numbered list icon reveals the extra options.
Extra Bulleted list options:
Extra Numbered list options:
By default, extra list style options are enable.
Context Menu
When the Context Menu is enabled it replaces your web browser’s menu item when you right click in the content area of your post editor with the following TinyMCE Advanced content menu.
Alternative Link Dialog
When the Link is enabled it replaces the WordPress Insert/Edit Links dialog with the following TinyMCE Advanced Insert/Edit Links Dialog.
Advanced Options
Under advanced options you can replace the paragraph block with the Classic Paragraph block by selecting “Make the Classic Paragraph” or “Classic block” the default block.
The following section explains how configure the Advanced Editor Tools if you are using the classic editor. If you are using the block editor, refer to the block editor section.
Enable/Disable Editor menu
By default, the editor menu is enabled. For best results it is recommended to keep the Editor menu enabled.
Add/Remove buttons
You remove buttons from the toolbars by dragging the buttons from the toolbar and dropping them into the Unused button area. You add buttons by dragging the buttons from the Unused button area to the desired toolbar.
Any button used regularly would added to the first toolbar row.
Remember to click Save Changes each time you make a change.
The following video to shows how to customize your classic editor using the Advanced Editor tools plugin (the video shows the original version of the TinyMCE Advanced plugin but is still applicable for this newer version of the plugin).
Options
List Style Options extend your bulleted and numbered list options.
Clicking on the drop down arrow next to the Bulleted list icon or Numbered list icon reveals the extra options.
Extra Bulleted list options:
Extra Numbered list options:
Context Menu
When the Context Menu is enabled it replaces your web browser’s menu item when you right click in the content area of your post editor with the following TinyMCE Advanced content menu.
Alternative Link Dialog
When the Link is enabled it replaces the WordPress Insert/Edit Links dialog with the following TinyMCE Advanced Insert/Edit Links Dialog.
Advanced Options
There is no need to make any changes to the advanced options.
Tim CarrOctober 13, 2015Share