Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: post_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
534      /**
535       * Filters the list of CSS classes for the current post.
536       *
537       * @since 2.7.0
538       *
539       * @param array $classes An array of post classes.
540       * @param array $class   An array of additional classes added to the post.
541       * @param int   $post_id The post ID.
542       */
543      $classes = apply_filters( 'post_class', $classes, $class, $post->ID );
544
545      return array_unique( $classes );
546 }
547
548 /**
549  * Display the classes for the body element.
550  *
551  * @since 2.8.0
552  *