PHP code example of dotsunited-wordpress-plugin / editor-grid
1. Go to this page and download the library: Download dotsunited-wordpress-plugin/editor-grid library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dotsunited-wordpress-plugin / editor-grid example snippets
add_filter('dotsunited_editor_grid_editor_ids', function($editor_ids) {
// WP Editor Widget plugin
$editor_ids[] = 'wpeditorwidget';
return $editor_ids;
});