Changeset 1668084
- Timestamp:
- 05/31/2017 09:08:11 PM (9 years ago)
- Location:
- re-add-text-justify-button/trunk
- Files:
-
- 3 edited
-
index.php (modified) (1 diff)
-
re-add-text-justify-button.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
re-add-text-justify-button/trunk/index.php
r1566110 r1668084 1 <?php 2 // Silence is golden 1 <?php // Silence is golden -
re-add-text-justify-button/trunk/re-add-text-justify-button.php
r1566110 r1668084 5 5 * Description: The most simple plugin to re-add text justify button in the WYSIWYG on WordPress 4.7+ 6 6 * Author: Salvatore Cordiano 7 * Version: 0.1. 07 * Version: 0.1.1 8 8 * Author URI: https://www.salvatorecordiano.it/ 9 9 */ … … 14 14 } 15 15 16 function parallel_mce_buttons( $buttons)16 function parallel_mce_buttons($buttons) 17 17 { 18 $position = array_search('align left', $buttons);18 $position = array_search('alignright', $buttons); 19 19 20 if (!is_int($position)) {20 if (! is_int($position)) { 21 21 22 22 return array_merge($buttons, ['alignjustify']); … … 30 30 } 31 31 32 add_action( 'admin_head', 'parallel_admin_head', 5);32 add_action('admin_head', 'parallel_admin_head', 5); -
re-add-text-justify-button/trunk/readme.txt
r1566111 r1668084 3 3 Tags: justify, mce, tiny mce, wysiwyg 4 4 Requires at least: 4.7 5 Tested up to: 4. 76 Stable tag: 0.1. 05 Tested up to: 4.8 6 Stable tag: 0.1.1 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 24 24 == Changelog == 25 25 26 = 0.1.1 = 27 * Test on WordPress 4.8. 28 26 29 = 0.1.0 = 27 30 * First release.
Note: See TracChangeset
for help on using the changeset viewer.