Quantcast
Channel: Wordpress – AuthorCode
Viewing all articles
Browse latest Browse all 10

Show the title for the Link and aside post type in twenty fourteen wordpress

$
0
0

In 2014 the WordPress release its new version with its default theme twenty fourteen.The Twenty fourteen theme supports various post types including the Aside and Link. The both Post format doesn’t have the title of post.

aside – Shows the content without a title. Similar to a Facebook note update. Typically used for the short notes or thoughts.

link – Shows the content without a title.

Link-and-Aside-without-titl

Aside and Link formats do not show the title of your posts. But you can show the title on those post formats by editing the theme’s style.css.

1. Open the style.css of the twenty fourteen wordpress theme. dashboard –> Appearance –> Editor.
2. Locate the following:

  1. .site-content .format-link .entry-title,
  2. .site-content .format-aside .entry-title,
  3. .site-content .format-quote .entry-title {
  4.  display: none;
  5. }

3. Remove the first line or replace the above lines from the following lines:

  1. .site-content .format-quote .entry-title {
  2.  display: none;
  3. }

If you want only display the title on the aside not on link then replace the above lines from the following lines:

  1. .site-content .format-link .entry-title,
  2. .site-content .format-quote .entry-title {
  3.  display: none;
  4. }

Viewing all articles
Browse latest Browse all 10

Trending Articles