1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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(); }
|