Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: site_allowed_themes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 2 times in this file.

Line Code
1705           if ( isset( $allowed_themes[ $blog_id ] ) ) {
1706                /**
1707                 * Filters the array of themes allowed on the site.
1708                 *
1709                 * @since 4.5.0
1710                 *
1711                 * @param string[] $allowed_themes An array of theme stylesheet names.
1712                 * @param int      $blog_id        ID of the site. Defaults to current site.
1713                 */
1714                return (array) apply_filters( 'site_allowed_themes', $allowed_themes[ $blog_id ], $blog_id );
1715           }
1716
1717           $current = get_current_blog_id() == $blog_id;
1718
1719           if ( $current ) {
1720                $allowed_themes[ $blog_id ] = get_option( 'allowedthemes' );
1721           } else {
1722                switch_to_blog( $blog_id );
1723                $allowed_themes[ $blog_id ] = get_option( 'allowedthemes' );
 
Line Code
1758                          switch_to_blog( $blog_id );
1759                          update_option( 'allowedthemes', $allowed_themes[ $blog_id ] );
1760                          delete_option( 'allowed_themes' );
1761                          restore_current_blog();
1762                     }
1763                }
1764           }
1765
1766           /** This filter is documented in wp-includes/class-wp-theme.php */
1767           return (array) apply_filters( 'site_allowed_themes', $allowed_themes[ $blog_id ], $blog_id );
1768      }
1769
1770      /**
1771       * Returns the folder names of the block template directories.
1772       *
1773       * @since 6.4.0
1774       *
1775       * @return string[] {
1776       *     Folder names used by block themes.