disable_formats_dropdown

disable_formats_dropdown

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('disable_formats_dropdown') is found 1 times:

  • /wp-admin/includes/class-wp-posts-list-table.php line 513
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    *
     * @param bool   $disable   Whether to disable the drop-down. Default false.
     * @param string $post_type Post type slug.
     */
    if ( apply_filters( 'disable_formats_dropdown', false, $post_type ) ) {
        return;
    }
     
    // Return if the post type doesn't have post formats or if we're in the Trash.
    if ( ! is_object_in_taxonomy( $post_type, 'post_format' ) || $this->is_trash ) {
        return;