| 739 | | <?php for ( $i = 1; $i <= 9; $i++ ) : ?> |
| | 739 | <?php |
| | 740 | /** |
| | 741 | * Allows change of min number of columns dropdown in Media Gallery |
| | 742 | * |
| | 743 | * @since 4.3 |
| | 744 | * |
| | 745 | * @param int $min Default columns_min of 1 |
| | 746 | */ |
| | 747 | $min_columns = apply_filters( 'media_gallery_columns_min', 1 ); |
| | 748 | /** |
| | 749 | * Allows change of max number of columns dropdown in Media Gallery |
| | 750 | * |
| | 751 | * @since 4.3 |
| | 752 | * |
| | 753 | * @param int $max Default columns_max of 9 |
| | 754 | */ |
| | 755 | $max_columns = apply_filters( 'media_gallery_columns_max', 9 ); |
| | 756 | |
| | 757 | for ( $i = intval( $min_columns ); $i <= intval( $max_columns ); $i++ ) : ?> |