mirror of
https://gh.wpcy.net/https://github.com/BracketSpace/WP-Admin-Reference.git
synced 2026-07-15 11:17:15 +08:00
11 lines
235 B
PHP
11 lines
235 B
PHP
<?php
|
|
/**
|
|
* Sections loop
|
|
*
|
|
* @package wpadminref
|
|
*/
|
|
|
|
$sections = apply_filters( 'wpadminref/sections', [] );
|
|
foreach ( $sections as $section_slug => $section ) {
|
|
get_template_part( 'template-parts/sections/' . $section_slug );
|
|
}
|