[Resolved] Post meta in one line?

Home Forums Support [Resolved] Post meta in one line?

Home Forums Support Post meta in one line?

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #120756
    pilxy

    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!

    #120864
    Tom
    Lead Developer
    Lead Developer
    #120890
    pilxy

    Great advice, as usual. Thank you, Tom! πŸ™‚

    #120940
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

    #121045
    pilxy

    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)?

    #121046
    pilxy

    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;
    }
    #121131
    Tom
    Lead Developer
    Lead Developer

    Perfect! Thanks for sharing πŸ™‚

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.