2014-04-09 23:22:44 +03:00
|
|
|
<?php
|
2014-05-01 05:54:25 +03:00
|
|
|
|
2014-04-09 23:22:44 +03:00
|
|
|
/**
|
2014-05-01 05:54:25 +03:00
|
|
|
* @TODO
|
|
|
|
* Define a short description for what this class does.
|
2014-04-09 23:22:44 +03:00
|
|
|
*
|
2014-05-01 05:54:25 +03:00
|
|
|
* @since x.x.x
|
|
|
|
* @package TODO
|
2014-04-09 23:22:44 +03:00
|
|
|
*/
|
|
|
|
|
2014-05-01 05:54:25 +03:00
|
|
|
/**
|
|
|
|
* @TODO
|
|
|
|
* Define a short description for what this class does.
|
|
|
|
*
|
|
|
|
* Define a longer description for the purpose of this class.
|
|
|
|
*
|
|
|
|
* @package TODO
|
|
|
|
* @author Your Name <your@email.com>
|
|
|
|
* @license GPL-2.0+
|
|
|
|
* @link URL
|
|
|
|
* @copyright 2014 Your Name of Your Company Name
|
|
|
|
*/
|
2014-04-09 23:22:44 +03:00
|
|
|
class Plugin_Name_Public {
|
|
|
|
|
2014-05-01 05:54:25 +03:00
|
|
|
/**
|
|
|
|
* @TODO
|
|
|
|
* Short description. (use period)
|
|
|
|
*
|
|
|
|
* Long description.
|
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
* @link URL
|
|
|
|
* @param string $content The content for the post type that's being filtered.
|
|
|
|
* @return string The modified version of the post content.
|
|
|
|
*/
|
|
|
|
public function display_the_content( $content ) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is provided for demonstration purposes only.
|
|
|
|
*
|
|
|
|
* An instance of this class should be passed to the run() function
|
|
|
|
* defined in Plugin_Name_Public_Loader as all of the hooks are defined
|
|
|
|
* in that particular class.
|
|
|
|
*
|
|
|
|
* The Plugin_Name_Public_Loader will then create the relationship
|
|
|
|
* between the defined hooks and the functions defined in this
|
|
|
|
* class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
return $content;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-04-26 01:39:31 +03:00
|
|
|
}
|