- Configure your variables. (💡 How to configure a variable)
- Select an "SEO recipe".
- Use the {{ myVariable }} syntax to use a variable in an "SEO recipe".
- Formatez une variable en ajoutant à l’intérieur des accolades le nom de la fonction précédé du caractère « | » : {{ maVariable | capitalize }}.
- The example above transforms the first letter of the variable into uppercase.
- Vous pouvez concaténer plusieurs fonctions en ajoutant une nouvelle fonction précédée du caractère « | » : {{ maVariable | capitalize | strip }}.
- The example above transforms the first letter of the variable into uppercase and removes the spaces before and after myVariable.
- Find out more about all the functions you can use, with examples, by clicking here.
Example of function implementation
You have retrieved two variables:
- productName = "pull
- colorProduct = "Green
Objectif : Nous voulons réécrire la balise <title> pour qu’elle affiche « Pull vert »
This means that :
- The "p" in Pull must be capitalized.
- The "v" in Vert must be in lower case.
Implementation steps
- Pour afficher les variables dans les recettes SEO, utilisez la syntaxe suivante : {{ nomProduit }} et {{ couleurProduit }}
- Formatting variables
- Utilisez la fonction « capitalize » pour mettre une majuscule à la première lettre de nomProduit : {{ nomProduit | capitalize }}
- Remove the spaces before and after the variable productName by concatenating the function strip {{ productName | strip | capitalize }}.
- Use the downcase function to convert ProductColor to lowercase. {{ productcolor | downcase }}
- Syntaxe finale à utiliser dans la « recette SEO » title : {{ nomProduit | strip | capitalize }} {{ couleurProduit | downcase }}