Before you ask please READ THIS

Where can I edit the post-meta?

edited August 2012 in Spaceship Posts: 15
Hi,

I want to remove the post-author from the post-meta. Where can I edit this, please?

Regard, r.

Comments

  • Hi,

    look for function post_info() at advance/apollo13.php

    Best wishes
    Stefan
  • AirAir
    Posts: 10,970

    Exactly, thanks rim_light :-)

    search for:

    function post_info() {
           (...)
            <div class="post-info">
                <?php echo $this->posted_on(); ?> <span class="author"><?php printf( __fe( 'by %1$s' ), get_the_author_link() ); ?></span>

    and delete whole span.author so it will look like this

    function post_info() {
           (...)
            <div class="post-info">
                <?php echo $this->posted_on(); ?>

    With regards.

  • Posts: 15
    I've found it - thank you very much :)
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!