Make WordPress Core

Changeset 1143


Ignore:
Timestamp:
04/24/2004 07:32:31 PM (21 years ago)
Author:
saxmatt
Message:

Show category ID.

Location:
trunk/wp-admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-functions.php

    r1135 r1143  
    8282
    8383                $bgcolor = ('#eee' == $bgcolor) ? 'none' : '#eee';
    84                 echo "<tr style='background-color: $bgcolor'><td>$pad $category->cat_name</td>
     84                echo "<tr style='background-color: $bgcolor'><th scope='row'>$category->cat_ID</th><td>$pad $category->cat_name</td>
    8585                <td>$category->category_description</td>
    8686                <td>$count</td>
  • trunk/wp-admin/categories.php

    r1130 r1143  
    147147<table width="100%" cellpadding="3" cellspacing="3">
    148148    <tr>
     149        <th scope="col"><?php _e('ID') ?></th>
    149150        <th scope="col"><?php _e('Name') ?></th>
    150151        <th scope="col"><?php _e('Description') ?></th>
  • trunk/wp-admin/wp-admin.css

    r1120 r1143  
    186186    border: 1px solid #ccc;
    187187    margin: 15px 5%;
    188     padding: 0 1em;
     188    padding: .5em 1em;
    189189}
    190190
     
    342342}
    343343
    344 #postcustom td,th {
    345     background-color: #fff;
     344#postcustom td, #postcustom th {
    346345    color: #000;
    347346    margin: 1px;
Note: See TracChangeset for help on using the changeset viewer.