get_dropins

函数
get_dropins ( No parameters )
返回值
  • (array[]) Array of arrays of dropin plugin data, keyed by plugin file name. See get_plugin_data().
定义位置
相关方法
_get_dropinsget_optionget_pluginsget_to_pingget_alloptions
引入
3.0.0
弃用
-

get_dropins: 这个函数返回安装在WordPress中的drop-ins数组。Drop-ins是替代WordPress核心功能的特殊插件,如数据库类或插件安装程序。它们通常用于高级定制或优化。

检查wp-content目录,并检索所有带有任何插件数据的drop-in。

function get_dropins() {
	$dropins      = array();
	$plugin_files = array();

	$_dropins = _get_dropins();

	// Files in wp-content directory.
	$plugins_dir = @opendir( WP_CONTENT_DIR );
	if ( $plugins_dir ) {
		while ( ( $file = readdir( $plugins_dir ) ) !== false ) {
			if ( isset( $_dropins[ $file ] ) ) {
				$plugin_files[] = $file;
			}
		}
	} else {
		return $dropins;
	}

	closedir( $plugins_dir );

	if ( empty( $plugin_files ) ) {
		return $dropins;
	}

	foreach ( $plugin_files as $plugin_file ) {
		if ( ! is_readable( WP_CONTENT_DIR . "/$plugin_file" ) ) {
			continue;
		}

		// Do not apply markup/translate as it will be cached.
		$plugin_data = get_plugin_data( WP_CONTENT_DIR . "/$plugin_file", false, false );

		if ( empty( $plugin_data['Name'] ) ) {
			$plugin_data['Name'] = $plugin_file;
		}

		$dropins[ $plugin_file ] = $plugin_data;
	}

	uksort( $dropins, 'strnatcasecmp' );

	return $dropins;
}

常见问题

FAQs
查看更多 >