wpmu_get_blog_allowedthemes() – Deprecated functionality for getting themes allowed on a specific site.

You appear to be a bot. Output may be restricted

Description

Deprecated functionality for getting themes allowed on a specific site.

Usage

wpmu_get_blog_allowedthemes( $blog_id );

Parameters

$blog_id
( mixed ) optional

Returns

void

Source

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

1 to 4 of 4
function wpmu_get_blog_allowedthemes( $blog_id = 0 ) {
  _deprecated_function( wpmu_get_blog_allowedthemes, '3.4.0', 'WP_Theme::get_allowed_on_site()' );
  return array_map( 'intval', WP_Theme::WP_Theme::get_allowed_on_site( $blog_id ) );
}
 

 View on GitHub View on Trac