All Docs Articles

Icons

The Greyd Plugin supports the use of icons throughout various blocks and settings in the WordPress Block Editor. Icons are based on the Elegant Icons library, which is automatically loaded and available without additional setup. The icons are used in both Core and Greyd blocks, such as button blocks, list elements, and special interface components […]

read more

Features

The Features page in the Greyd Plugin allows users to enable or disable individual functionalities of the plugin. Each feature is modular and can be controlled independently, depending on project requirements. This setup helps streamline the plugin’s footprint and allows for a customized feature set per site or multisite network. Each feature is technically built […]

read more

SEO Extensions

The SEO Extensions feature can be turned on or off individually on the Features page. SEO sitemap The Greyd Plugin includes native support for XML sitemaps, which can be managed under Greyd Suite Settings → SEO Sitemap. This feature allows you to control how search engines like Google discover and index your site’s content. By […]

read more

Installer

When you activate the Greyd Plugin for the first time, the Installer will launch automatically. You can also open the Installer manually at any time via the WordPress backend menu under Greyd Suite → Installer. The Installer is designed to walk you through all the essential setup steps to ensure your Greyd Suite instance is […]

read more

Theme Assets

Theme Assets provide direct access to Full Site Editing related content elements that are otherwise hidden from the standard WordPress admin interface. These assets include templates, template parts, patterns, navigation menus, and global styles — all of which are stored as hidden post types in the database and typically managed through the Site Editor. The […]

read more

Post Import and Export

The Post Import and Export feature is a native part of the Greyd Plugin. It allows you to export any post from one WordPress stage and import it into another. This functionality goes far beyond simple copy and paste. Posts in WordPress often reference various elements from the database — such as featured images, embedded […]

read more

Animations

The Animation feature in Greyd allows users to add CSS-based animations to almost any block in the block editor — both WordPress Core and Greyd blocks. It integrates natively and is accessible via the right-hand sidebar of each block. To use it, open the block editor and select any block such as a paragraph, heading, […]

read more

Dashboard

The Greyd Plugin Dashboard offers a central overview and helpful controls for managing your installation. It provides quick access to licensing, features, theme/plugin status, and support resources. At the top of the page, a yellow notification bar includes a download button on the right. This lets you download the latest version of the plugin directly, […]

read more

Why are session cookies set on my website?

Certain Greyd.Suite features require session cookies, for example to recognize users after confirming an email opt-in or opt-out. These session cookies do not contain any identification of the user and therefore do not need an opt-in. A session cookie is a form of cookie that is deleted as soon as the user closes the browser […]

read more

Customize excerpt settings

You can adjust excerpt lengths and the ellipsis easily by adding the following code to the functions.php of your child theme and adapt it as you need: PHPCopyfunction my_custom_excerpt_length( $length ) { return 20; } add_filter( 'excerpt_length', 'my_custom_excerpt_length', 999 ); PHPCopyfunction my_custom_excerpt_more( $more ) { return '… read more'; } add_filter( 'excerpt_more', 'my_custom_excerpt_more' );

read more