-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcata-seo.php
43 lines (36 loc) · 1.01 KB
/
cata-seo.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
/**
* Cata SEO
*
* @package Cata\SEO
* @author Thought & Expression Co. <[email protected]>
* @copyright 2019 Thought & Expression Co.
* @license GNU GENERAL PUBLIC LICENSE
*
* @wordpress-plugin
* Plugin Name: Cata SEO
* Description: Adds features related to search indexing and structured data.
* Author: Thought & Expression Co. <[email protected]>
* Author URI: https://thought.is
* Version: 0.1.0
* License: GPL v3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
*/
namespace Cata\SEO;
/**
* Structured Data
*/
require_once __DIR__ . '/includes/structured-data/class-structured-data.php';
new Structured_Data();
/**
* Jetpack Settings
*/
require_once __DIR__ . '/includes/jetpack-settings/class-jetpack-settings.php';
require_once __DIR__ . '/includes/jetpack-settings/share-image/class-share-image.php';
new Jetpack_Settings();
new Jetpack_Settings\Share_Image();
/**
* Robots
*/
require_once __DIR__ . '/includes/robots/class-robots.php';
new Robots();