123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- return [
- /*
- |--------------------------------------------------------------------------
- | Limit title meta tag length
- |--------------------------------------------------------------------------
- |
- | To best SEO implementation, limit tags.
- |
- */
- 'title_limit' => 70,
- /*
- |--------------------------------------------------------------------------
- | Limit description meta tag length
- |--------------------------------------------------------------------------
- |
- | To best SEO implementation, limit tags.
- |
- */
- 'description_limit' => 200,
- /*
- |--------------------------------------------------------------------------
- | Limit image meta tag quantity
- |--------------------------------------------------------------------------
- |
- | To best SEO implementation, limit tags.
- |
- */
- 'image_limit' => 5,
- /*
- |--------------------------------------------------------------------------
- | Available Tag formats
- |--------------------------------------------------------------------------
- |
- | A list of tags formats to print with each definition
- |
- */
- 'tags' => ['Tag', 'MetaName', 'MetaProperty', 'MetaProduct', 'TwitterCard'],
- /*
- |--------------------------------------------------------------------------
- | Strings Separator
- |--------------------------------------------------------------------------
- |
- | Use this string to separate default and custom title.
- |
- */
- 'separator' => ' - ',
- ];
|