geggiot
Member
Posted 3 years ago #
hi
i have latest wp 2.6.5 and branfordmagazine theme.
In administration, manage post i have all my articles order in column with title-date-status-tag-category-edit. There isn't author column for article and for me it's a big trouble.
Anyone can help me to fix this issue?
i have already tried to disable all plugin, restore default theme, but nothing.
can see an image here http://cittadelmonte.info/sadssss.JPG
geggiot
Member
Posted 3 years ago #
geggiot,
Go to your wp-admin folder, and open edit-post-rows.php
at about line 133, you should have the following code, after "comments" and before "status":
<?php
break;
case 'author':
?>
<td><a href="edit.php?author=<?php the_author_ID(); ?>"><?php the_author() ?></a></td>
You can always download a fresh WordPress folder and upload that file.
See if this helps.
geggiot
Member
Posted 3 years ago #
i already have this code and author row there isn't
geggiot, this post about adding custom columns to the manage posts screen, made me think of looking into wp-admin/edit.php
Around line 63, do you have the following?
// Use $_GET instead of is_ since they can override each other
$h2_author = '';
$_GET['author'] = (int) $_GET['author'];
if ( $_GET['author'] != 0 ) {
if ( $_GET['author'] == '-' . $user_ID ) { // author exclusion
$h2_author = ' ' . __('by other authors');
} else {
$author_user = get_userdata( get_query_var( 'author' ) );
$h2_author = ' ' . sprintf(__('by %s'), wp_specialchars( $author_user->display_name ));
}
}
This creates the author's row.
geggiot
Member
Posted 3 years ago #
solve with compare folders my wp and a fresh installation.maybe a language pot file issue.