Changeset 6978 for trunk/wp-admin/options-permalink.php
- Timestamp:
- 02/22/2008 07:43:06 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-permalink.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-permalink.php
r6976 r6978 130 130 <table class="niceblue"> 131 131 <tr> 132 <t d><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label>132 <th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th> 133 133 <td><code><?php echo get_option('home'); ?>/?p=123</code></span></td> 134 134 </tr> 135 135 <tr> 136 <t d><label><input name="selection" type="radio" value="<?php echo $structures[1]; ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Date and name based'); ?></label></td>136 <th><label><input name="selection" type="radio" value="<?php echo $structures[1]; ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Date and name based'); ?></label></th> 137 137 <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></td> 138 138 </tr> 139 139 <tr> 140 <t d><label><input name="selection" type="radio" value="<?php echo $structures[2]; ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></td>140 <th><label><input name="selection" type="radio" value="<?php echo $structures[2]; ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></th> 141 141 <td><code><?php echo get_option('home') . $prefix ; ?>/archives/123</code></td> 142 142 </tr> 143 143 <tr> 144 <t d>144 <th> 145 145 <label><input name="selection" id="custom_selection" type="radio" value="custom" class="tog" 146 146 <?php if ( !in_array($permalink_structure, $structures) ) { ?> … … 150 150 <?php _e('Custom Structure'); ?> 151 151 </label> 152 </t d>152 </th> 153 153 <td> 154 154 <input name="permalink_structure" id="permalink_structure" type="text" class="code" style="width: 60%;" value="<?php echo attribute_escape($permalink_structure); ?>" size="50" /> … … 174 174 </tr> 175 175 </table> 176 < input type="submit" name="submit" class="button" value="<?php _e('Save Changes') ?>" />176 <p class="submit"><input type="submit" name="submit" class="button" value="<?php _e('Save Changes') ?>" /></p> 177 177 </form> 178 178 <?php if ( $permalink_structure && !$usingpi && !$writable ) : ?>
Note: See TracChangeset
for help on using the changeset viewer.