Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: theme_row_meta

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
745            *
746            * @since 3.1.0
747            *
748            * @param string[] $theme_meta An array of the theme's metadata, including
749            *                             the version, author, and theme URI.
750            * @param string   $stylesheet Directory name of the theme.
751            * @param WP_Theme $theme      WP_Theme object.
752            * @param string   $status     Status of the theme.
753            */
754           $theme_meta = apply_filters( 'theme_row_meta', $theme_meta, $stylesheet, $theme, $status );
755
756           echo implode( ' | ', $theme_meta );
757
758           echo '</div>';
759      }
760
761      /**
762       * Handles the auto-updates column output.
763       *