disable_formats_dropdown

disable_formats_dropdown

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('disable_formats_dropdown') is found 1 times:

  • /wp-admin/includes/class-wp-posts-list-table.php line 513
    		 *
    		 * @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;