Make WordPress Core

Changes between Initial Version and Version 4 of Ticket #42383


Ignore:
Timestamp:
11/02/2017 06:34:08 AM (6 years ago)
Author:
SergeyBiryukov
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #42383

    • Property Status changed from new to closed
    • Property Component changed from General to Plugins
    • Property Resolution changed from to duplicate
    • Property Milestone changed from Awaiting Review to
  • Ticket #42383 – Description

    initial v4  
    2828
    2929so, the "wp_include_framework" should be '''native''' WP function, which will do the following (phseudo-code):
    30 
     30{{{
    3131function wp_include_framework($name, $version){
    3232    //check if folder doesnt exist
     
    3636    include_once(ABSPATH.'/wp-content/frameworks/visual-composer/4.15/loader.php');
    3737}
    38 
     38}}}
    3939
    4040So, whenever plugin/theme is updated, the SVN only gets update of 1 line in plugin/theme PHP code, instead of updating whole library file ( authors of thousands of plugins and themes doing the same thing).