Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter inezxtan

    (@inezxtan)

    Never mind – I’ve been a little more careful and I’m generally good. Thank you!

    Thread Starter inezxtan

    (@inezxtan)

    When I save that code, the page freezes and goes completely white, and none of my site will load. I have to go reset wp-options and change the template and css to something other than my child theme to unfreeze the site.

    Thread Starter inezxtan

    (@inezxtan)

    Here’s one thing I tried, copied straight out of the Twenty Eleven functions.php. It seems like having the exact same thing in both functions.php breaks the site with good reason, but I also tried changing ‘twentyeleven_posted_on’ and all the twentyelevens to ‘ava’ (the name of my child theme):

    <?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">Posted on </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;
    
    ?>

    I have read that particular codex entry and am afraid I still don’t know what exactly to do. Should I modify the parent functions.php first?

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