mirror of
https://github.com/ulaulaman/eduinaf-ajax-filter-posts.git
synced 2025-06-27 09:03:00 +02:00
First commit
This commit is contained in:
53
ajax-filter-posts.php
Executable file
53
ajax-filter-posts.php
Executable file
@@ -0,0 +1,53 @@
|
||||
<?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 1.0.0
|
||||
* @package Ajax_Filter_Posts
|
||||
*
|
||||
* @wordpress-plugin
|
||||
* Plugin Name: Ajax filter posts
|
||||
* 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.
|
||||
* Version: 1.0.0
|
||||
* 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 1.0.0
|
||||
*/
|
||||
function run_ajax_filter_posts() {
|
||||
|
||||
$plugin = new Ajax_Filter_Posts();
|
||||
|
||||
}
|
||||
run_ajax_filter_posts();
|
Reference in New Issue
Block a user