meta.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Limit title meta tag length
  6. |--------------------------------------------------------------------------
  7. |
  8. | To best SEO implementation, limit tags.
  9. |
  10. */
  11. 'title_limit' => 70,
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Limit description meta tag length
  15. |--------------------------------------------------------------------------
  16. |
  17. | To best SEO implementation, limit tags.
  18. |
  19. */
  20. 'description_limit' => 200,
  21. /*
  22. |--------------------------------------------------------------------------
  23. | Limit image meta tag quantity
  24. |--------------------------------------------------------------------------
  25. |
  26. | To best SEO implementation, limit tags.
  27. |
  28. */
  29. 'image_limit' => 5,
  30. /*
  31. |--------------------------------------------------------------------------
  32. | Available Tag formats
  33. |--------------------------------------------------------------------------
  34. |
  35. | A list of tags formats to print with each definition
  36. |
  37. */
  38. 'tags' => ['Tag', 'MetaName', 'MetaProperty', 'MetaProduct', 'TwitterCard'],
  39. /*
  40. |--------------------------------------------------------------------------
  41. | Strings Separator
  42. |--------------------------------------------------------------------------
  43. |
  44. | Use this string to separate default and custom title.
  45. |
  46. */
  47. 'separator' => ' - ',
  48. ];