Files
CHIEFSOFT\ameye b114fdf4fa first commit
2023-12-28 16:20:07 -05:00

23 lines
320 B
PHP

<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
/**
* Generates and displays the HTML for a metabox section.
*/
interface WPSEO_Metabox_Section {
/**
* Outputs the section link.
*/
public function display_link();
/**
* Outputs the section content.
*/
public function display_content();
}