Changeset 5696 for trunk/wp-admin/options-permalink.php
- Timestamp:
- 06/13/2007 04:29:55 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-permalink.php
r5571 r5696 132 132 <label> 133 133 <input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> 134 <?php _e('Default'); ?><br /> <span> »<code><?php echo get_option('home'); ?>/?p=123</code></span>134 <?php _e('Default'); ?><br /> <span> <?php echo _c('»|Used as a list bullet'); ?> <code><?php echo get_option('home'); ?>/?p=123</code></span> 135 135 </label> 136 136 </p> … … 138 138 <label> 139 139 <input name="selection" type="radio" value="<?php echo $structures[1]; ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> 140 <?php _e('Date and name based'); ?><br /> <span> »<code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></span>140 <?php _e('Date and name based'); ?><br /> <span> <?php echo _c('»|Used as a list bullet'); ?> <code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></span> 141 141 </label> 142 142 </p> … … 144 144 <label> 145 145 <input name="selection" type="radio" value="<?php echo $structures[2]; ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> 146 <?php _e('Numeric'); ?><br /> <span> »<code><?php echo get_option('home') . $prefix ; ?>/archives/123</code></span>146 <?php _e('Numeric'); ?><br /> <span> <?php echo _c('»|Used as a list bullet'); ?> <code><?php echo get_option('home') . $prefix ; ?>/archives/123</code></span> 147 147 </label> 148 148 </p>
Note: See TracChangeset
for help on using the changeset viewer.