Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: display_site_states

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

Line Code
633           /**
634            * Filters the default site display states for items in the Sites list table.
635            *
636            * @since 5.3.0
637            *
638            * @param string[] $site_states An array of site states. Default 'Main',
639            *                              'Archived', 'Mature', 'Spam', 'Deleted'.
640            * @param WP_Site  $site        The current site object.
641            */
642           $site_states = apply_filters( 'display_site_states', $site_states, $_site );
643
644           if ( ! empty( $site_states ) ) {
645                $state_count = count( $site_states );
646
647                $i = 0;
648
649                echo ' — ';
650
651                foreach ( $site_states as $state ) {