diff --git a/src/wp-admin/options-writing.php b/src/wp-admin/options-writing.php
index 5944124bce..b77f805175 100644
a
|
b
|
unset( $post_formats['standard'] ); |
100 | 100 | <select name="default_post_format" id="default_post_format"> |
101 | 101 | <option value="0"><?php echo get_post_format_string( 'standard' ); ?></option> |
102 | 102 | <?php foreach ( $post_formats as $format_slug => $format_name ) : ?> |
103 | | <option<?php selected( get_option( 'default_post_format' ), $format_slug ); ?> value="<?php echo esc_attr( $format_slug ); ?>"><?php echo esc_html( $format_name ); ?></option> |
| 103 | <option <?php selected( get_option( 'default_post_format' ), $format_slug ); ?> value="<?php echo esc_attr( $format_slug ); ?>"><?php echo esc_html( $format_name ); ?></option> |
104 | 104 | <?php endforeach; ?> |
105 | 105 | </select> |
106 | 106 | </td> |