• Resolved geggiot

    (@geggiot)


    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 https://cittadelmonte.info/sadssss.JPG

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter geggiot

    (@geggiot)

    help!

    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.

    Thread Starter geggiot

    (@geggiot)

    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.

    Thread Starter geggiot

    (@geggiot)

    solve with compare folders my wp and a fresh installation.maybe a language pot file issue.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘CAn’t show…’ is closed to new replies.