D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
vblioqus
/
www
/
wp-content
/
themes
/
kadence
/
inc
/
components
/
Filename :
component_interface.php
back
Copy
<?php /** * Kadence\Component_Interface interface * * @package kadence */ namespace Kadence; /** * Interface for a theme component. */ interface Component_Interface { /** * Gets the unique identifier for the theme component. * * @return string Component slug. */ public function get_slug() : string; /** * Adds the action and filter hooks to integrate with WordPress. */ public function initialize(); }