175 | | <div id="titlewrap"> |
176 | | <label class="screen-reader-text" for="title"><?php _e('Title') ?></label> |
177 | | <input type="text" name="post_title" size="30" tabindex="1" value="<?php echo esc_attr( htmlspecialchars( $post->post_title ) ); ?>" id="title" autocomplete="off" /> |
| 175 | |
| 176 | <?php |
| 177 | $posttitle = esc_attr( htmlspecialchars( $post->post_title ) ); |
| 178 | $titlediv =<<<TITLEDIV |
| 179 | <div id='titlewrap'> |
| 180 | <label class='screen-reader-text' for='title'>"__('Title')"</label> |
| 181 | <input type='text' name='post_title' size='30' tabindex='1' value='$posttitle' id='title' autocomplete='off' /> |