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