mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-24 01:57:53 +01:00
Properly nest the if tag. props helenyhou. see #21391.
git-svn-id: http://core.svn.wordpress.org/trunk@22757 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7a4b96d78f
commit
1935e74233
@ -2287,14 +2287,16 @@ function edit_form_image_editor() {
|
|||||||
<label for="attachment_caption"><strong><?php _e( 'Caption' ); ?></strong></label><br />
|
<label for="attachment_caption"><strong><?php _e( 'Caption' ); ?></strong></label><br />
|
||||||
<textarea class="widefat" name="excerpt" id="attachment_caption"><?php echo $post->post_excerpt; ?></textarea>
|
<textarea class="widefat" name="excerpt" id="attachment_caption"><?php echo $post->post_excerpt; ?></textarea>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<?php if ( 'image' === substr( $post->post_mime_type, 0, 5 ) ) : ?>
|
<?php if ( 'image' === substr( $post->post_mime_type, 0, 5 ) ) : ?>
|
||||||
<p>
|
<p>
|
||||||
<label for="attachment_alt"><strong><?php _e( 'Alternative Text' ); ?></strong></label><br />
|
<label for="attachment_alt"><strong><?php _e( 'Alternative Text' ); ?></strong></label><br />
|
||||||
<input type="text" class="widefat" name="_wp_attachment_image_alt" id="attachment_alt" value="<?php echo esc_attr( $alt_text ); ?>" />
|
<input type="text" class="widefat" name="_wp_attachment_image_alt" id="attachment_alt" value="<?php echo esc_attr( $alt_text ); ?>" />
|
||||||
</p>
|
</p>
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
endif;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user