favorite_actions

The timeline below displays how wordpress function favorite_actions has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * Favorite actions were deprecated in version 3.2. Use the admin bar instead.
 *
 * @since 2.7.0
 * @deprecated 3.2.0 Use WP_Admin_Bar
 * @see WP_Admin_Bar
 */
function favorite_actions()
{
    _deprecated_function(__FUNCTION__, '3.2.0', 'WP_Admin_Bar');
}

WordPress Version: 4.4

/**
 * Favorite actions were deprecated in version 3.2. Use the admin bar instead.
 *
 * @since 2.7.0
 * @deprecated 3.2.0 Use WP_Admin_Bar
 * @see WP_Admin_Bar
 */
function favorite_actions()
{
    _deprecated_function(__FUNCTION__, '3.2', 'WP_Admin_Bar');
}

WordPress Version: 3.7

/**
 * Favorite actions were deprecated in version 3.2. Use the admin bar instead.
 *
 * @since 2.7.0
 * @deprecated 3.2.0
 */
function favorite_actions()
{
    _deprecated_function(__FUNCTION__, '3.2', 'WP_Admin_Bar');
}