Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: disable_formats_dropdown

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
468       */
469      protected function formats_dropdown( $post_type ) {
470           /**
471            * Filters whether to remove the 'Formats' drop-down from the post list table.
472            *
473            * @since 5.2.0
474            *
475            * @param bool $disable Whether to disable the drop-down. Default false.
476            */
477           if ( apply_filters( 'disable_formats_dropdown', false ) ) {
478                return;
479           }
480
481           // Make sure the dropdown shows only formats with a post count greater than 0.
482           $used_post_formats = get_terms(
483                array(
484                     'taxonomy'   => 'post_format',
485                     'hide_empty' => true,
486                )