Make WordPress Core


Ignore:
Timestamp:
01/03/2008 01:34:11 AM (17 years ago)
Author:
matt
Message:

New tag interface, tag auto-suggest while typing. Rough - suggest and parts of JS should probably be refactored. Hat tip: jhodgdon.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-form-advanced.php

    r6213 r6542  
    158158<?php echo $form_prevstatus ?>
    159159
    160 <fieldset id="tagdiv">
    161     <legend><?php _e('Tags (separate multiple tags with commas: cats, pet food, dogs)'); ?></legend>
    162     <div><input type="text" name="tags_input" class="tags-input" id="tags-input" size="30" tabindex="3" value="<?php echo get_tags_to_edit( $post_ID ); ?>" /></div>
    163 </fieldset>
    164 
    165160<p class="submit">
    166161<span id="autosave"></span>
     
    202197
    203198<div class="dbx-b-ox-wrapper">
     199<fieldset id="tagdiv" class="dbx-box">
     200<div class="dbx-h-andle-wrapper">
     201<h3 class="dbx-handle"><?php _e('Tags (separate multiple tags with commas: cats, pet food, dogs)'); ?></h3>
     202</div>
     203<div class="dbx-c-ontent-wrapper">
     204<div class="dbx-content">
     205<p id="jaxtag">
     206<input type="text" name="tags_input" class="tags-input" id="tags-input" size="40" tabindex="3" value="<?php echo get_tags_to_edit( $post_ID ); ?>" />
     207</p>
     208<p id="tagchecklist"></p>
     209</div></div>
     210</fieldset>
     211</div>
     212
     213<div class="dbx-b-ox-wrapper">
    204214<fieldset id="postexcerpt" class="dbx-box">
    205215<div class="dbx-h-andle-wrapper">
     
    207217</div>
    208218<div class="dbx-c-ontent-wrapper">
    209 <div class="dbx-content"><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea></div>
    210 </div>
     219<div class="dbx-content"><textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt ?></textarea>
     220</div></div>
    211221</fieldset>
    212222</div>
Note: See TracChangeset for help on using the changeset viewer.