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
|
<?php /** * Loads the integrations that are needed on the Frontend. * * @package Yoast\YoastSEO\Config */
namespace Yoast\WP\Free\Config;
use Yoast\WP\Free\WordPress\Integration;
/** * Load Frontend integrations. */ class Frontend implements Integration {
/** * Initializes the integration. * * This is the place to register hooks and filters. * * @codeCoverageIgnore * * @return void */ public function register_hooks() { } }
|