| Server IP : 213.186.33.4 / Your IP : 216.73.216.146 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/plugins/wordpress-seo/inc/ |
Upload File : |
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Deprecated
*/
/**
* Remove the bulk edit capability from the proper default roles.
*
* Contributor is still removed for legacy reasons.
*
* @deprecated 5.5
*/
function wpseo_remove_capabilities() {
_deprecated_function( __FUNCTION__, 'WPSEO 5.5.0', 'WPSEO_Capability_Manager_Factory::get()->remove()' );
WPSEO_Capability_Manager_Factory::get()->remove();
}
/**
* Add the bulk edit capability to the proper default roles.
*
* @deprecated 5.5.0
*/
function wpseo_add_capabilities() {
_deprecated_function( __FUNCTION__, 'WPSEO 5.5.0', 'WPSEO_Capability_Manager_Factory::get()->add()' );
WPSEO_Capability_Manager_Factory::get()->add();
}
/**
* Adds help tabs.
*
* @deprecated 7.6.0
*
* @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
*
* @return string The content for the template variables tab.
*/
function wpseo_add_template_variables_helpcenter() {
_deprecated_function( __FUNCTION__, 'WPSEO 7.6.0' );
return '';
}