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
626           /**
627            * Filter the default site display states for items in the Sites list table.
628            *
629            * @since 5.3.0
630            *
631            * @param array $site_states An array of site states. Default 'Main',
632            *                           'Archived', 'Mature', 'Spam', 'Deleted'.
633            * @param WP_Site $site The current site object.
634            */
635           $site_states = apply_filters( 'display_site_states', $site_states, $_site );
636
637           if ( ! empty( $site_states ) ) {
638                $state_count = count( $site_states );
639                $i           = 0;
640                echo ' — ';
641                foreach ( $site_states as $state ) {
642                     ++$i;
643                     ( $i == $state_count ) ? $sep = '' : $sep = ', ';
644                     echo "<span class='post-state'>{$state}{$sep}</span>";