Remove unused variable and CSS class. see #24046.
git-svn-id: https://develop.svn.wordpress.org/trunk@24099 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
438f4085f1
commit
af71a8c16d
|
@ -4148,14 +4148,6 @@ body .ui-tooltip {
|
|||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.post-format-set .post-format-options {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.post-format-set .post-format-change {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#poststuff .post-format-change {
|
||||
margin: -7px 0 13px 2px;
|
||||
padding: 0;
|
||||
|
|
|
@ -129,7 +129,6 @@ foreach ( get_object_taxonomies( $post ) as $tax_name ) {
|
|||
// post format
|
||||
$format_class = '';
|
||||
$post_format = '';
|
||||
$post_format_set_class = '';
|
||||
$post_format_options = '';
|
||||
if ( post_type_supports( $post_type, 'post-formats' ) && apply_filters( 'enable_post_format_ui', true, $post ) ) {
|
||||
wp_enqueue_script( 'post-formats' );
|
||||
|
@ -373,7 +372,7 @@ if ( 'post' == $post_type ) {
|
|||
require_once('./admin-header.php');
|
||||
?>
|
||||
|
||||
<div class="wrap <?php echo $post_format_set_class; ?>">
|
||||
<div class="wrap">
|
||||
<?php screen_icon(); ?>
|
||||
<h2><?php
|
||||
echo esc_html( $title );
|
||||
|
|
Loading…
Reference in New Issue