| Current Path : /home/admin/ricard.blog.lppelm.o2switch.site/wp-content/plugins/gutenify/inc/ |
| Current File : /home/admin/ricard.blog.lppelm.o2switch.site/wp-content/plugins/gutenify/inc/class-ajax.php |
<?php
/**
* Ajax
*
* @package Gutenify
*/
/**
* Gutenify_Ajax
*/
class Gutenify_Ajax {
/**
* Gutenify_Ajax constructor.
*/
public function __construct() {
// Get templates.
add_action( 'wp_ajax_gutenify_get_templates', array( $this, 'get_templates' ) );
}
/**
* Get templates.
*/
public function get_templates() {
echo "test";
}
}
new Gutenify_Ajax();