get_site_allowed_themes() – Deprecated functionality for getting themes network-enabled themes.

You appear to be a bot. Output may be restricted

Description

Deprecated functionality for getting themes network-enabled themes.

Usage

get_site_allowed_themes();

Parameters

Returns

void

Source

File name: wordpress/wp-admin/includes/ms-deprecated.php
Lines:

1 to 4 of 4
function get_site_allowed_themes() {
  _deprecated_function( get_site_allowed_themes, '3.4.0', 'WP_Theme::get_allowed_on_network()' );
  return array_map( 'intval', WP_Theme::WP_Theme::get_allowed_on_network() );
}
 

 View on GitHub View on Trac