Site logo

Archived topic

Post meta in one line?

6 replies · Started by Anonymous on July 13, 2015

Viewing posts 1–7 of 7

Hi,

I wonder if there is a way to get all of the post meta (date, author, tags, categories, comments) to show in one line, under the post title?

Thank you for the reply!

Great advice, as usual. Thank you, Tom! :)

You're welcome :)

One more thing regarding post-meta: Is it possible to add fa icon in front of the date (f073) and replace word "by" (author) with an fa icon (f007)?

Ok, I managed to show icons with this css code:

.posted-on:before {
  content: "\f073";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  position: relative;
  margin-right: 5px;
  width: 13px;
  text-align: center;
}
.byline:before {
  content: "\f007";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
  position: relative;
  margin-right: 5px;
  width: 13px;
  text-align: center;
}

Perfect! Thanks for sharing :)

This archived topic is closed to new replies.