Support » Theme: Twenty Thirteen » title in quote post format not appear

  • Resolved ayman.assaf

    (@aymanassaf)


    I write a new post using the format quote, the title disappear. i am using the wp 3.6.1 with theme Twenty Thirteen. i didn’t edit the theme, any info about this ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey. This was an intentional design decision that was made for the quote post format in this theme. For more information about post formats please refer here: http://codex.wordpress.org/Post_Formats.

    If you would like your title to appear for the quote post format, firstly create a child theme. Information about and instructions on how to create a child theme can be found here: codex.wordpress.org/Child_Themes.

    Once you created a child theme, make a copy of the parent theme’s “content-quote.php” file in your child theme’s directory. Copy and paste the code from the parent theme’s “content-quote.php” file in its entirety into the new file.

    In the code, just below:

    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    	<div class="entry-content">

    Insert the following:

    <h1 class="entry-title"><?php the_title(); ?></h1>

    Click save, and your title should now appear for any quotes. 🙂

    Thread Starter ayman.assaf

    (@aymanassaf)

    Thanks a lot.

    You’re welcome. 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘title in quote post format not appear’ is closed to new replies.