lbrypress/classes/lbry_post_handler.php
Lemuel Smyth cb61208b12
Prevent direct access from outside WordPress (#60)
* prevent access from outside wordpress

* prevent discovery of file structure
2022-02-13 19:34:20 -06:00

19 lines
309 B
PHP

<?php
/**
* Handles post saves and updates, triggering proper plugin
* functions when necessary
*
* @package LBRYPress
*/
defined('ABSPATH') || die(); // Exit if accessed directly
class LBRY_Post_Handler
{
/**
* [__construct description]
*/
public function __construct()
{
}
}