Title: Ceebe's Replies | WordPress.org

---

# Ceebe

  [  ](https://wordpress.org/support/users/ceebe/)

 *   [Profile](https://wordpress.org/support/users/ceebe/)
 *   [Topics Started](https://wordpress.org/support/users/ceebe/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ceebe/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ceebe/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ceebe/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ceebe/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ceebe/favorites/)

 Search replies:

## Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Align postdate and posttitle](https://wordpress.org/support/topic/align-postdate-and-posttitle/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/align-postdate-and-posttitle/#post-3247282)
 * Okay, thanks yogi, for your reply. Will try that.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Align postdate and posttitle](https://wordpress.org/support/topic/align-postdate-and-posttitle/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/align-postdate-and-posttitle/#post-3247278)
 * I just wanted to make sure I did the right thing.
    Do you have any other suggestions?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Align postdate and posttitle](https://wordpress.org/support/topic/align-postdate-and-posttitle/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/align-postdate-and-posttitle/#post-3247255)
 * Thanks WP yogi, but this doesn’t work; I lost the date completely. It looks like
   this now:
 *     ```
       <header class="entry-header">
       <div class="postdate">
       <div class="postday"><?php the_time('d'); ?></div>
       <div class="postmonth"><?php the_time('F'); ?></div>
       <div class="postyear"><?php the_time('Y'); ?></div>
       </div>
       <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
       </header><!-- .entry-header -->
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Change posted by .. on.. in twenty eleven](https://wordpress.org/support/topic/change-posted-by-on-in-twenty-eleven/)
 *  [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/change-posted-by-on-in-twenty-eleven/#post-3236910)
 * Took me hours to figure that out. But I made it like this (not the best way, 
   even stupid, I guess, but it works)
    Make a new functions.php file in your childtheme
   and copy this text:
 *     ```
       <?php
       if ( ! function_exists( 'twentyeleven_posted_on' ) ) :
       /**
        * Prints HTML with meta information for the current post-date/time and author.
        * Create your own twentyeleven_posted_on to override in a child theme
        *
        * @since Twenty Eleven 1.0
        */
       function twentyeleven_posted_on() {
       	printf( __( '<span class="sep">Geplaatst op </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'twentyeleven' ),
       		esc_url( get_permalink() ),
       		esc_attr( get_the_time() ),
       		esc_attr( get_the_date( 'c' ) ),
       		esc_html( get_the_date() ),
       		esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
       		esc_attr( sprintf( __( 'View all posts by %s', 'twentyeleven' ), get_the_author() ) ),
       		get_the_author()
       	);
       }
       endif;
       ?>
       ```
   
 * Where it says ‘geplaatst op’ change that to your Publisert.
    Have fun.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Posted on](https://wordpress.org/support/topic/posted-on/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/posted-on/#post-3177148)
 * Got it! Yes! Took me hours to figure it out.
    For those who want to know:
 * Follow the steps as described above but, add **<?php **above the code and close
   with **?> ** at the end.
 * That will make it work. Dont ask me why cause I don’t know anything about codes,
   css etc.
 * Found some more on this here: [http://wordpress.org/support/topic/functionsphp-on-twentyten-child-theme-causes-blank-pages-mu-setup](http://wordpress.org/support/topic/functionsphp-on-twentyten-child-theme-causes-blank-pages-mu-setup)
 * Have fun and tnx to repliers.
    Ceebe
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Posted on](https://wordpress.org/support/topic/posted-on/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/posted-on/#post-3177144)
 * Hm, understand but don’t like it.
    Would it help if I would put in some spam?
   🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Posted on](https://wordpress.org/support/topic/posted-on/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/posted-on/#post-3177141)
 * Please esmi, can you remove my post?
    Thought I could edit after a while, but
   can’t and I do not want the link to become public for to long.
 * Thanx!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Posted on](https://wordpress.org/support/topic/posted-on/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/posted-on/#post-3177134)
 * Euh, [http://www.knotjebril.nl](http://www.knotjebril.nl)
    Way to difficult for
   me.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Posted on](https://wordpress.org/support/topic/posted-on/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/posted-on/#post-3177132)
 * Bummer, can’t get it to work. When I upload a copy of the functions.php form 
   parent to child theme, I can not log in to the blog anymore. I’ve read somewhere
   that functions.php can not be overwritten, and thus I can not change it.
 * Any other suggestions on this?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Posted on](https://wordpress.org/support/topic/posted-on/)
 *  Thread Starter [Ceebe](https://wordpress.org/support/users/ceebe/)
 * (@ceebe)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/posted-on/#post-3177100)
 * Oh, looks good. I’ll try tomorrow because it is bedtime now (europe).
    Thank 
   ysm, esmi and alchymyth for your prompt replies.

Viewing 10 replies - 1 through 10 (of 10 total)