Plugin Directory

Changeset 2898339


Ignore:
Timestamp:
04/13/2023 08:53:55 AM (3 years ago)
Author:
finnj
Message:

Version 1.6.2

Location:
frontier-query/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • frontier-query/trunk/frontier-query.php

    r2897390 r2898339  
    55Description: Display list and grouping of posts in widgets, posts and pages. Breakdown posts by categories, taxonomies, date, post type etc.
    66Author: finnj
    7 Version: 1.6.1
     7Version: 1.6.2
    88Author URI: http://wpfrontier.com
    99*/
     
    1111
    1212// define constants
    13 define('FRONTIER_QUERY_VERSION', "1.6.1");
     13define('FRONTIER_QUERY_VERSION', "1.6.2");
    1414define('FRONTIER_QUERY_DIR', dirname( __FILE__ )); //an absolute path to this directory
    1515define('FRONTIER_QUERY_URL', plugin_dir_url( __FILE__ )); //url path to this directory
  • frontier-query/trunk/readme.txt

    r2897390 r2898339  
    9292== Changelog ==
    9393
    94 = 1.6.1 =
     94= 1.6.2 =
    9595* Tested with Wordpress version 6.2
    9696* Tested with php 8.0
  • frontier-query/trunk/widgets/frontier-query-widget.php

    r1330003 r2898339  
    44 * Frontier Query Widget
    55 */
    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
     9function init_fq_query_widget()
     10{
     11    return register_widget('fq_query_widget');
     12}
     13add_action ('widgets_init', 'init_fq_query_widget');
    714
    815
  • frontier-query/trunk/widgets/frontier-search-widget.php

    r1758511 r2898339  
    44 * Frontier Query Widget
    55 */
    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
     8function init_fq_search_widget()
     9{
     10    return register_widget('fq_search_widget');
     11}
     12add_action ('widgets_init', 'init_fq_search_widget');
    713
    814
Note: See TracChangeset for help on using the changeset viewer.