This commit is contained in:
KhaiNguyen
2020-02-13 10:39:37 +07:00
commit 59401cb805
12867 changed files with 4646216 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Deprecated
*/
/**
* Adds help tabs.
*
* @deprecated 7.6.0
* @codeCoverageIgnore
*
* @param array $tabs Current help center tabs.
*
* @return array List containing all the additional tabs.
*/
function yoast_add_meta_options_help_center_tabs( $tabs ) {
_deprecated_function( __FUNCTION__, 'WPSEO 7.6.0', 'WPSEO_Help_Center_Template_Variables_Tab::add_meta_options_help_center_tabs' );
return $tabs;
}
/**
* Adds template variables to the help center.
*
* @deprecated 7.6.0
* @codeCoverageIgnore
*
* @return string The content for the template variables tab.
*/
function wpseo_add_template_variables_helpcenter() {
_deprecated_function( __FUNCTION__, 'WPSEO 7.6.0' );
return '';
}