- File: interface-metabox-section.php
- Full Path: /home/matthif/www/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php
- Date Modified: 02/24/2024 11:29 PM
- File size: 362 bytes
- MIME-type: text/x-php
- Charset: utf-8
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin
*/
/**
* Generates and displays the HTML for a metabox section.
*/
interface WPSEO_Metabox_Section {
/**
* Outputs the section link.
*
* @return void
*/
public function display_link();
/**
* Outputs the section content.
*
* @return void
*/
public function display_content();
}