32 lines
479 B
PHP
32 lines
479 B
PHP
<?php
|
|
/**
|
|
* Core functionality for the plugin
|
|
*
|
|
* @package WPALLSTARS\PluginStarterTemplate
|
|
*/
|
|
|
|
namespace WPALLSTARS\PluginStarterTemplate;
|
|
|
|
/**
|
|
* Core class
|
|
*/
|
|
class Core {
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct() {
|
|
// Initialize hooks.
|
|
}
|
|
|
|
/**
|
|
* Example method to filter content
|
|
*
|
|
* @param string $content The content to filter.
|
|
* @return string The filtered content.
|
|
*/
|
|
public function filter_content( $content ) {
|
|
return $content;
|
|
}
|
|
}
|