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" /> |
178 | | </div> |
| 175 | |
| 176 | <?php |
| 177 | $titlediv = "<div id=\"titlewrap\">"; |
| 178 | $titlediv .= " <label class=\"screen-reader-text\" for=\"title\">"._e('Title')."</label>"; |
| 179 | $titlediv .= " <input type=\"text\" name=\"post_title\" size=\"30\" tabindex=\"1\" value=\"".esc_attr( htmlspecialchars( $post->post_title ) )."\" id=\"title\" autocomplete=\"off\" />"; |
| 180 | $titlediv .= "</div>"; |
| 181 | |
| 182 | echo apply_filters('post-titlediv', $titlediv); |
| 183 | ?> |
| 184 | |