Support » Fixing WordPress » doesn’t show author post in manage/post

  • Resolved geggiot

    (@geggiot)


    wp 2.6.2

    i don’t know why there isn’t author post in manage/post.It show only title, date, status, cat, tag and action.
    anyone can explain how can i solve it?
    thanks

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

    (@geggiot)

    anyone?

    Thread Starter geggiot

    (@geggiot)

    up please

    Thread Starter geggiot

    (@geggiot)

    up

    Thread Starter geggiot

    (@geggiot)

    up

    Thread Starter geggiot

    (@geggiot)

    up

    ok
    i found your question while looking for the same answer
    you seem desperate, so HERE IS THE ANSWER :
    1) go to the theme editor
    2) edit “single.php”
    3) locate :

    <?php if ( get_option("show_author") ) : ?>
    			<div class="author"><?php the_author() ?></div>
    			<?php endif ;?>

    4) replace it with :

    <?php if ((1+1)==2) ) : ?>
    			<div class="author"><?php the_author() ?></div>
    			<?php endif ;?>

    it’s certainly not the best method, but it’s the most effective, SINCE NO ONE KNOWS HOW TO MODIFY THE DAMN “show_autor” OPTION !!!!!!!!

    Thread Starter geggiot

    (@geggiot)

    <?php if ((1+1)==2) ) : ?> ???

    it’s to disable the if test

    <?php if ((1+1)==2) ) : ?>
    			<div class="author"><?php the_author() ?></div>
    			<?php endif ;?>

    is the same as :

    <div class="author"><?php the_author() ?></div>

    but more fun

    Thread Starter geggiot

    (@geggiot)

    i have this in single.php

    <big><?php the_time(__('j M Y','branfordmagazine')); ?> | <?php _e('Scritto da','branfordmagazine');?> <b><?php the_author_posts_link('namefl'); ?></b> | <?php _e('Rubrica:','branfordmagazine');?>
        <?php the_category(', ') ?>
    	<?php edit_post_link('Edit', ' | ', ''); ?>
    <?php if(function_exists('wp_print')) { print_link(); } ?>
    </big>

    but your code desn’t fix my problem

    Thread Starter geggiot

    (@geggiot)

    help

    Thread Starter geggiot

    (@geggiot)

    up help!

    Thread Starter geggiot

    (@geggiot)

    help!

    How can this issue be resolved? single.php doesn’t contain anything about the_author. Can someone answer this?

    Thread Starter geggiot

    (@geggiot)

    jessicanyx
    i solved this issue reuploading new language pot files

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘doesn’t show author post in manage/post’ is closed to new replies.