Support » Fixing WordPress » How to only remove Posted By in the Twenty Ten Theme?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Moderator t-p

    (@t-p)

    Try:

    – cut and paste the line below to style.css under “/* =Content”:

    .post .entry-utility, .post .entry-meta {display:none;}

    Thread Starter Buppha

    (@buddies)

    Thank you very much for your prompt response! But, I don’t know about the code above would just remove the Post Date as well since I only want to hide the “Post By”?

    you will need to edit functions.php;
    the functions ‘twentyten_posted_on()’ and ‘twentyten_posted_in()’ are at the end.

    Moderator t-p

    (@t-p)

    First off, do not edit the Twenty ten theme. Instead, create a child theme for your changes.

    to hide posted by, cut and paste the line below to style.css under “/* =Content”:

    span.meta-sep { display:none; }
    
    span.author { display:none; }
    Thread Starter Buppha

    (@buddies)

    Ok, I’ll try that. Thanks!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I think you’re not supposed to create a functions.php file within your Child Theme.

    Thread Starter Buppha

    (@buddies)

    Thank you so much t-p. It works now! I will mark this post as resolved.

    Moderator t-p

    (@t-p)

    you are welcome.:)

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to only remove Posted By in the Twenty Ten Theme?’ is closed to new replies.