eduinaf-ajax-filter-posts/ajax-filter-posts.php

54 lines
1.6 KiB
PHP
Raw Normal View History

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
* @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
2017-03-30 16:27:22 +02:00
* Plugin URI: http://www.robbertdekuiper.com
* Description: This is a short description of what the plugin does. It's displayed in the WordPress admin area.
2017-03-31 14:06:13 +02:00
* Version: 0.2.0
2017-03-30 16:27:22 +02:00
* Author: Robbert de Kuiper
* Author URI: http://www.robbertdekuiper.com
* 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.
*
* @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();