Skip to main content
  1. Writing/

Enabling Hidden Posts In Ghost Blog Instances

·672 words

There might be several scenarios under which you need to make sure that certain published posts are hidden on your Ghost Blog landing page. Out-of-the-box this is not yet supported, but luckily there is an easy way to implement this restriction.

For the purpose of this example, we will not show posts that are tagged a certain way. Let’s start with the fundamentals, though. Ghost relies on a templating framework called Handlebars. While it is extensible, it lacks certain capabilities by default.

One of the things that we need to check for when rendering the landing page is whether a post has a specific tag or not. There are two ways of going around that – either with a {{has}} helper, that is built into Ghost (as pointed out in the Ghost i18n Slack channel), or via a custom conditional helper. Looking at this community wiki on StackOverflow, we get a nice solution for the problem:

Handlebars.registerHelper('ifCond', function (v1, operator, v2, options) {
  switch (operator) {
    case '==':
      return (v1 == v2) ? options.fn(this) : options.inverse(this);
    case '===':
      return (v1 === v2) ? options.fn(this) : options.inverse(this);
    case '<':
      return (v1 < v2) ? options.fn(this) : options.inverse(this);
    case '<=':
      return (v1 <= v2) ? options.fn(this) : options.inverse(this);
    case '>':
      return (v1 > v2) ? options.fn(this) : options.inverse(this);
    case '>=':
      return (v1 >= v2) ? options.fn(this) : options.inverse(this);
    case '&&':
      return (v1 && v2) ? options.fn(this) : options.inverse(this);
    case '||':
      return (v1 || v2) ? options.fn(this) : options.inverse(this);
    default:
      return options.inverse(this);
  }
});

In your blog instance root folder, create a new file – helpers.js. This is where we will include our first custom Handlebars helper (and any other helpers, if you will need them later on).

Ghost uses a custom flavor of Handlebars, express-hbs. For that, in helpers.js, we need to include a custom declaration header:

var hbs = require('express-hbs');

Now we can formalize the original ifCond helper within our helper:

module.exports = function() {  
    hbs.registerHelper('ifCond', function (v1, operator, v2, options) {

    switch (operator) {
        case '==':
            return (v1 == v2) ? options.fn(this) : options.inverse(this);
        case '===':
            return (v1 === v2) ? options.fn(this) : options.inverse(this);
        case '<':
            return (v1 < v2) ? options.fn(this) : options.inverse(this);
        case '<=':
            return (v1 <= v2) ? options.fn(this) : options.inverse(this); 
        case '>':
            return (v1 > v2) ? options.fn(this) : options.inverse(this);
        case '>=':
            return (v1 >= v2) ? options.fn(this) : options.inverse(this);
        case '&&':
            return (v1 && v2) ? options.fn(this) : options.inverse(this);
        case '||':
            return (v1 || v2) ? options.fn(this) : options.inverse(this);
        default:
            return options.inverse(this);
    }
});

To be able to use the helper, ensure that you require it in config.js:

require('./helpers')();

Let’s dig through the infrastructure where the post previews for the landing page are handled. Specifically, let’s dig through content/themes/casper/partials/loop.hbs. That is, if you are using the default theme (casper). If you are using a custom theme, you will need to navigate to the right partial view.

Leverage ifCond within the iterator to verify whether a post contains the signal flag that you are using to determine whether a post should be displayed on the landing page or not:

{{!-- This is the post loop - each post will be output using this markup --}}
{{#foreach posts}}
{{#ifCond tags.0.slug '==' "translation"}}

            {{title}}

            {{excerpt words="26"}} »

            {{#if author.image}}{{/if}}
            {{author}}
            {{tags prefix=" on "}}
            {{date format="DD MMMM YYYY"}}

{{/ifCond}}
{{/foreach}}

That is it! Because Handlebars supports array references (notice tags.0.slug), we can simply perform one check instead of creating a custom property in the post rendering code.

Of course, that can be a way to do that for cases where, unlike me, you are not assuming that the tag will also be the first tag within the slug. For that, you will need to modify renderPost in core/server/controllers/frontend/index.js to carry the aforementioned property:

response.post.isTranslation = (response.post.tags[0].slug.toLowerCase() == "translation");

In this case, the property is not there in the stock model, but given the flexibility of JavaScript, we can just add it within one line. The Boolean value can later be used to determine whether to show the post or not.