Changeset 1957130
- Timestamp:
- 10/15/2018 08:00:34 PM (7 years ago)
- Location:
- wp-edit/trunk
- Files:
-
- 3 edited
-
includes/functions.php (modified) (1 diff)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-edit/trunk/includes/functions.php
r1490696 r1957130 762 762 if(isset($opts_user_meta['default_visual_tab']) && $opts_user_meta['default_visual_tab'] === '1') { 763 763 764 add_filter( 'wp_default_editor', create_function('', 'return "tmce";') ); 764 // If php version 7 or higher 765 if ( strnatcmp( phpversion(),'7.0.0') >= 0 ) { 766 767 add_filter( 'wp_default_editor', function() { return 'tmce'; } ); 768 } 769 // Else using php below version 7 770 else { 771 772 add_filter( 'wp_default_editor', create_function('', 'return "tmce";') ); 773 } 765 774 } 766 775 -
wp-edit/trunk/main.php
r1853617 r1957130 4 4 * Plugin URI: https://wpeditpro.com 5 5 * Description: Ultimate WordPress Content Editing. 6 * Version: 4.0. 36 * Version: 4.0.4 7 7 * Author: Josh Lobe 8 8 * Author URI: https://wpeditpro.com … … 1952 1952 1953 1953 echo '<table><tbody>'; 1954 echo '<tr><td>Downloaded:</td><td>' . number_format( $call_api->downloaded ) . ' times</td></tr>';1955 1954 echo '<tr><td>Active Installs:</td><td>' . number_format( $call_api->active_installs ) . '+</td></tr>'; 1956 1955 echo '<tr><td>Number of Ratings:</td><td>' . $call_api->num_ratings . '</td></tr>'; -
wp-edit/trunk/readme.txt
r1853617 r1957130 4 4 Tags: wpedit, wp edit, editor, buttons, button, add, font, font style, font select, table, tables, visual editor, search, replace, colors, color, anchor, advance, advanced, links, link, popup, javascript, upgrade, update, admin, image, images, citations, preview, html, custom css, borders, pages, posts, colorful, php, php widget, shortcode, shortcodes, style, styles, plugin, login, excerpt, id, post, page, youtube, tinymce 5 5 Requires at least: 3.9 6 Tested up to: 4.9. 67 Stable tag: 4.0. 36 Tested up to: 4.9.8 7 Stable tag: 4.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 20 21 21 Refer your favorite plugin/theme developers to the [WP Edit Custom Buttons API](http://learn.wpeditpro.com/custom-buttons-api/) documentation to get your favorite buttons added to WP Edit. 22 23 = Introduction =24 For a riveting video introduction into the possibilities available with WP Edit; please visit [Jupiter Jim's Marketing Team](http://jupiterjim.club/wordpress/tutorials/change-font-family-font-size-wordpress-4-4-1/).25 22 26 23 = Description = … … 107 104 == Changelog == 108 105 106 = 4.0.4 = 107 * Updated function for php7 and backwards compatibility (to rid php warning). Thanks @kendawes! 108 109 109 = 4.0.3 = 110 110 * Updated readme.
Note: See TracChangeset
for help on using the changeset viewer.