About Extension

Extensions are specific code additions to theme. These can include feature additions, integration of JavaScript libraries, CSS, and more. The extension system is designed to optimize theme code, as not all features are necessary for every type of blog. You can install only the features that are needed.


List of Extensions

The complete list of extensions can be found on the page: List of Extensions.



Adding Extensions

For official NEOS extensions, installation guides are explained on the documentation page of each extension.

Regarding other code additions, in XML themes, there are two specific sections provided for adding code: head_extensions and body_extensions.

head_extensions head_extensions is the place for adding code located within the head. For integration instructions that you find from other website, you will often find tutorials instructing to place code between <head> and </head>. For such instructions, place the code inside head_extensions - (View).

In the XML Editor, to navigate to this section, search for the code id='head_extensions'.


body_extensions body_extensions is the place for adding code located before the closing body tag. For integration instructions you find from other website, you will often find tutorials instructing to place code before the </body> tag. For such instructions, place the code inside body_extensions - (View).

In the XML Editor, to navigate to this section, search for the code id='body_extensions'.
Have Question?