TheSEOFrameworkService.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | namespace SureCart\Integrations\TheSEOFramework; |
| 4 | |
| 5 | use SureCart\Integrations\Abstracts\NoIndexService; |
| 6 | |
| 7 | /** |
| 8 | * Controls The SEO Framework integration. |
| 9 | */ |
| 10 | class TheSEOFrameworkService extends NoIndexService { |
| 11 | /** |
| 12 | * The filter hook name for the robots meta. |
| 13 | * |
| 14 | * @var string |
| 15 | */ |
| 16 | protected $hook_name = 'the_seo_framework_robots_meta_array'; |
| 17 | } |
| 18 |