Changeset 2898339
- Timestamp:
- 04/13/2023 08:53:55 AM (3 years ago)
- Location:
- frontier-query/trunk
- Files:
-
- 4 edited
-
frontier-query.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
widgets/frontier-query-widget.php (modified) (1 diff)
-
widgets/frontier-search-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontier-query/trunk/frontier-query.php
r2897390 r2898339 5 5 Description: Display list and grouping of posts in widgets, posts and pages. Breakdown posts by categories, taxonomies, date, post type etc. 6 6 Author: finnj 7 Version: 1.6. 17 Version: 1.6.2 8 8 Author URI: http://wpfrontier.com 9 9 */ … … 11 11 12 12 // define constants 13 define('FRONTIER_QUERY_VERSION', "1.6. 1");13 define('FRONTIER_QUERY_VERSION', "1.6.2"); 14 14 define('FRONTIER_QUERY_DIR', dirname( __FILE__ )); //an absolute path to this directory 15 15 define('FRONTIER_QUERY_URL', plugin_dir_url( __FILE__ )); //url path to this directory -
frontier-query/trunk/readme.txt
r2897390 r2898339 92 92 == Changelog == 93 93 94 = 1.6. 1=94 = 1.6.2 = 95 95 * Tested with Wordpress version 6.2 96 96 * Tested with php 8.0 -
frontier-query/trunk/widgets/frontier-query-widget.php
r1330003 r2898339 4 4 * Frontier Query Widget 5 5 */ 6 add_action('widgets_init', create_function('', 'return register_widget("fq_query_widget");')); 6 // add_action('widgets_init', create_function('', 'return register_widget("fq_query_widget");')); 7 8 9 function init_fq_query_widget() 10 { 11 return register_widget('fq_query_widget'); 12 } 13 add_action ('widgets_init', 'init_fq_query_widget'); 7 14 8 15 -
frontier-query/trunk/widgets/frontier-search-widget.php
r1758511 r2898339 4 4 * Frontier Query Widget 5 5 */ 6 add_action('widgets_init', create_function('', 'return register_widget("fq_search_widget");')); 6 //add_action('widgets_init', create_function('', 'return register_widget("fq_search_widget");')); 7 8 function init_fq_search_widget() 9 { 10 return register_widget('fq_search_widget'); 11 } 12 add_action ('widgets_init', 'init_fq_search_widget'); 7 13 8 14
Note: See TracChangeset
for help on using the changeset viewer.