Tagged: , ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28727

    Looking for help :). For my frontpage I want to insert a quick preview of my blog posts. As I don´t have too much space, I want only the blog title and the meta informations to be displayed. But there is no options for “Only Title” in the blog shortcode. I am forced to display the full post or the excerpt. I thaught about creating empty excerpts, but this would effect my blog page as well. Any solution?

    #138454

    Hey,

    You can hide the excerpt via CSS.

    If you want to change the style of a specific page, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .post .entry-content.clearfix p {
    display: none;
    }

    Regards,

    Ismael

    #138455

    Thanks for your help!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Blog Shortcode – Titles only’ is closed to new replies.