Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: body_class

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
549                $class = preg_split( '#\s+#', $class );
550           $classes = array_merge( $classes, $class );
551      } else {
552           // Ensure that we always coerce class to being an array.
553           $class = array();
554      }
555
556      $classes = array_map( 'esc_attr', $classes );
557
558      return apply_filters( 'body_class', $classes, $class );
559 }
560
561 /**
562  * Whether post requires password and correct password has been provided.
563  *
564  * @since 2.7.0
565  *
566  * @param int|object $post An optional post. Global $post used if not provided.
567  * @return bool false if a password is not required or the correct password cookie is present, true otherwise.