FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
metabox
Edit File: interface-metabox-section.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(); }
Save
Back