2017-03-30 16:27:22 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The plugin bootstrap file
|
|
|
|
*
|
|
|
|
* This file is read by WordPress to generate the plugin information in the plugin
|
|
|
|
* admin area. This file also includes all of the dependencies used by the plugin,
|
|
|
|
* registers the activation and deactivation functions, and defines a function
|
|
|
|
* that starts the plugin.
|
|
|
|
*
|
|
|
|
* @link http://www.robbertdekuiper.com
|
2017-03-31 12:46:24 +02:00
|
|
|
* @since 0.1
|
2017-03-30 16:27:22 +02:00
|
|
|
* @package Ajax_Filter_Posts
|
|
|
|
*
|
|
|
|
* @wordpress-plugin
|
2020-07-08 15:39:54 +02:00
|
|
|
* Plugin Name: Ajax Filter Posts Edu INAF ver
|
2020-07-08 21:43:42 +02:00
|
|
|
* Plugin URI: https://github.com/ulaulaman/eduinaf-ajax-filter-posts
|
|
|
|
* Description: Personalizzazione del plugin per i filtri ajax
|
2020-12-18 19:18:10 +01:00
|
|
|
* Version: 0.2.5
|
2020-07-28 09:35:18 +02:00
|
|
|
* Author: Robbert de Kuiper, Gianluigi Filippelli
|
2017-03-30 16:27:22 +02:00
|
|
|
* License: GPL-2.0+
|
|
|
|
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
* Text Domain: ajax-filter-posts
|
|
|
|
* Domain Path: /languages
|
|
|
|
*/
|
|
|
|
|
|
|
|
// If this file is called directly, abort.
|
|
|
|
if ( ! defined( 'WPINC' ) ) {
|
|
|
|
die;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The core plugin class that is used to define internationalization,
|
|
|
|
* admin-specific hooks, and public-facing site hooks.
|
|
|
|
*/
|
|
|
|
require plugin_dir_path( __FILE__ ) . 'class-ajax-filter-posts.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Begins execution of the plugin.
|
|
|
|
*
|
|
|
|
* Since everything within the plugin is registered via hooks,
|
|
|
|
* then kicking off the plugin from this point in the file does
|
|
|
|
* not affect the page life cycle.
|
|
|
|
*
|
2017-03-31 12:46:24 +02:00
|
|
|
* @since 0.1
|
2017-03-30 16:27:22 +02:00
|
|
|
*/
|
|
|
|
function run_ajax_filter_posts() {
|
|
|
|
|
|
|
|
$plugin = new Ajax_Filter_Posts();
|
|
|
|
|
|
|
|
}
|
|
|
|
run_ajax_filter_posts();
|