index_rel_link

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

WordPress Version: 4.6

/**
 * Display relational link for the site index.
 *
 * @since 2.8.0
 * @deprecated 3.3.0
 */
function index_rel_link()
{
    _deprecated_function(__FUNCTION__, '3.3.0');
    echo get_index_rel_link();
}

WordPress Version: 3.7

/**
 * Display relational link for the site index.
 *
 * @since 2.8.0
 * @deprecated 3.3.0
 */
function index_rel_link()
{
    _deprecated_function(__FUNCTION__, '3.3');
    echo get_index_rel_link();
}