• Resolved jmckiernan86

    (@jmckiernan86)


    I’m using the twenty eleven theme with a child theme so i can make changes to it. I want to remove the “posted on DATE by ADMIN” line above all of the posts. How would i remove that line using a child theme?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Have a look at this tutorial it does not remove it but it should help.

    The function twentyeleven_posted_on() is pluggable, which means if a function with the same name is in the child theme the parent function will be ignored.

    So in the child theme functions.php just add an empty pluggable function
    UNTESTED:

    if ( ! function_exists( 'twentyeleven_posted_on' ) ) :
       function twentyeleven_posted_on() {
          //This removes the posted on and by
          return "";
       }
    endif;

    HTH

    David

    Thread Starter jmckiernan86

    (@jmckiernan86)

    Thanks David that worked perfectly!

    Great,
    Could you mark this as resolved please.

    David

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘edit out php in child theme’ is closed to new replies.