• Resolved hamacting

    (@hamacting)


    http://project365.thepotters.org

    Thank you for this theme, which I am using for a photo-per-day project at the above site.

    I would like to be able to additional posts to the site, and not have these posts show up on the front page or the grid.

    Is this possible?

    Many thanks,
    /alan

Viewing 3 replies - 1 through 3 (of 3 total)
  • What a cool project! The easiest option would be to hide specific posts on the homepage by adding some CSS to your child theme, for example this would hide day 314.

    .blog .post-6060 {
      display: none;
    }

    You can get the post’s ID number by looking in the browser’s address bar you’re editing the post, or you can see it in the browser source.

    Let me know if this would do the trick for you!

    Thread Starter hamacting

    (@hamacting)

    Sounds great – I shall give it a try this evening. Thank you very much – and glad you like the idea of the project. The pictorico theme is PERFECT for this project!

    Great! Let me know how it goes. I forgot to mention that you can hide multiple posts in a single CSS statement, like this:

    .blog .post-6060, .blog .post-xxxx, .blog .post-xxxx, .blog .post-xxxx {
      display: none;
    }

    Just replace the x’s with the right post IDs, of course. 🙂

    The pictorico theme is PERFECT for this project!

    Wonderful! It’s always awesome when a theme matches someone’s needs so well.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Hide specific blog posts from front page grid’ is closed to new replies.