Changeset 1220079
- Timestamp:
- 08/13/2015 04:02:17 PM (11 years ago)
- Location:
- easytree/trunk
- Files:
-
- 3 edited
-
easytree.php (modified) (1 diff)
-
functions/get_easytree_html.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easytree/trunk/easytree.php
r1219476 r1220079 4 4 * Plugin URI: http://easytree.damlys.pl/ 5 5 * Description: Complete dropdown tree navigation that contain pages, categories with posts, tags, authors and own menu. 6 * Version: 1. 046 * Version: 1.1 7 7 * Author: Damian Lysiak 8 8 * Author URI: http://damlys.pl/ -
easytree/trunk/functions/get_easytree_html.php
r1219476 r1220079 2 2 function get_easytree_html() { 3 3 4 // funkcja może zostać użyta tylko raz 5 if($GLOBALS["get_easytree_html_only_once"]) return; 6 $GLOBALS["get_easytree_html_only_once"] = true; 7 // --- 4 // funkcja może zostać użyta tylko raz 5 if($GLOBALS["get_easytree_html_only_once"]) return; 6 $GLOBALS["get_easytree_html_only_once"] = true; 7 // --- 8 9 $result = wp_cache_get( 'easytree' ); 10 if($result === false) { 11 $result = generate_easytree_html(); 12 wp_cache_set( 'easytree', $result ); 13 } 14 return $result; 15 } 16 17 function generate_easytree_html() { 8 18 9 19 $option_exclude_from_pages = get_option('easytree_option_exclude_from_pages'); -
easytree/trunk/readme.txt
r1219476 r1220079 51 51 == Changelog == 52 52 53 = 1.1 = 54 * Support for cache 55 53 56 = 1.04 = 54 57 * Better support for private posts and pages … … 72 75 == Upgrade Notice == 73 76 77 = 1.1 = 78 Support for cache 79 74 80 = 1.04 = 75 81 Display categories for private posts and pages
Note: See TracChangeset
for help on using the changeset viewer.