函数原型
get_importers(): array
函数描述
Retrieves the list of importers.
是否弃用
未弃用
函数参数
无
函数返回值
array
函数位置
File: wp-admin/includes/import.php.
函数源码
function get_importers() {
global $wp_importers;
if ( is_array( $wp_importers ) ) {
uasort( $wp_importers, '_usort_by_first_member' );
}
return $wp_importers;
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |

