You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create an opportunity for global site tag management. In its raw form, it may look something like this (in gatsby-config.js):
gatsby-config.js in gatsby-theme-chronoblog plugin options
tagsManagement: [{tagName: "post",// main name of the tagreplacement: ["posts","blog-posts"],// all tags matching those listed in this array will be replaced with the one specified in tagNamehide: true,// if true, this tag will not be displayed to site visitors, but technically it will continue to existtextColor: "white",// any css color for text in a tagbackgroundColor: "#a7d0e0"// any css color for tag background}]
Since this is an array with objects, you can list any number of tags here (including if such tags do not yet exist on the site). The most important option is the tagName.
This option allows developers to give tags a style (see this: #26)
It will also allow developers to hide any tags from view, but at the same time, technically, they will continue to exist, so that developers can use these hidden tags to, say, filter content. This issue was mentioned here: #32
The text was updated successfully, but these errors were encountered:
Create an opportunity for global site tag management. In its raw form, it may look something like this (in gatsby-config.js):
gatsby-config.js in gatsby-theme-chronoblog plugin options
Since this is an array with objects, you can list any number of tags here (including if such tags do not yet exist on the site). The most important option is the
tagName
.This option allows developers to give tags a style (see this: #26)
It will also allow developers to hide any tags from view, but at the same time, technically, they will continue to exist, so that developers can use these hidden tags to, say, filter content. This issue was mentioned here: #32
The text was updated successfully, but these errors were encountered: