Plugin Directory

Changeset 805406


Ignore:
Timestamp:
11/16/2013 03:50:39 PM (12 years ago)
Author:
jayarjo
Message:

Insert rich text editors as late as possible.

Location:
rich-tax-description-editor/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • rich-tax-description-editor/trunk/main.php

    r789147 r805406  
    44Plugin URI: http://wordpress.org/support/plugin/rich-tax-description-editor
    55Description: Turns Description field on Taxonomy pages into the full scale Rich Text Editor.
    6 Version: 1.2.2
     6Version: 1.2.3
    77Author: Davit Barbakadze
    88Author URI: http://wordpress.org/support/profile/jayarjo
     
    106106
    107107
    108     function a_99__after_setup_theme()
     108    function a_99__wp_loaded() // make sure this runs as late as possible (following after_setup_theme and init)
    109109    {
    110110        foreach (get_taxonomies() as $tax) {
     
    147147    }
    148148   
     149   
    149150    // disable extra sanitization on description field
    150151    function f_0__pre_term_description($description)
  • rich-tax-description-editor/trunk/readme.txt

    r789148 r805406  
    44Tags: tag, category, taxonomy, rich text editor
    55Requires at least: 3.3
    6 Tested up to: 3.5.1
    7 Stable tag: 1.2.2
     6Tested up to: 3.7.1
     7Stable tag: 1.2.3
    88
    99Turns boring Description field on Taxonomy pages into full scale Rich Text Editor.
     
    5858* Insert rich editors on after_setup_theme, instead of on init. 
    5959
     60= 1.2.3 =
     61* Insert rich editors on after_setup_theme, instead of on wp_loaded (as late as possible).
     62
Note: See TracChangeset for help on using the changeset viewer.