1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php /** * WPSEO plugin file. * * @package WPSEO\Deprecated */
if ( ! function_exists( 'initialize_wpseo_front' ) ) { /** * Wraps frontend class. * * @deprecated 14.0 * @codeCoverageIgnore */ function initialize_wpseo_front() { _deprecated_function( __FUNCTION__, 'WPSEO 14.0' ); } }
|