Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Starker’s Naked Theme 3.1 Date Stamp

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #32989
    hirok
    Member

    Can anyone tell me how I can style the date stamp in this theme? It’s written differently than the past version. Thanks in advance!

    if ( ! function_exists( 'twentyten_posted_on' ) ) :
    /**
    * Prints HTML with meta information for the current post—date/time and author.
    *
    * @since Twenty Ten 1.0
    */
    function twentyten_posted_on() {
    printf( __( 'Posted on %2$s by %3$s', 'twentyten' ),
    'meta-prep meta-prep-author',
    sprintf( '',
    get_permalink(),
    esc_attr( get_the_time() ),
    get_the_date('M jS Y')
    ),
    sprintf( '%3$s',
    get_author_posts_url( get_the_author_meta( 'ID' ) ),
    sprintf( esc_attr__( 'View all posts by %s', 'twentyten' ), get_the_author() ),
    get_the_author()
    )
    );
    }
Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.