Files
jachty.pkmp.com.pl/wp-content/plugins/wordpress-seo/admin/metabox/interface-metabox-section.php
Roman Pyrih 7483681901 first commit
2026-04-21 15:48:41 +02:00

27 lines
362 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.
*
* @return void
*/
public function display_link();
/**
* Outputs the section content.
*
* @return void
*/
public function display_content();
}