_insert_into_post_button

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

WordPress Version: 4.6

/**
 * This was once used to display an 'Insert into Post' button.
 *
 * Now it is deprecated and stubbed.
 *
 * @deprecated 3.5.0
 */
function _insert_into_post_button($type)
{
    _deprecated_function(__FUNCTION__, '3.5.0');
}

WordPress Version: 4.4

/**
 * This was once used to display an 'Insert into Post' button.
 *
 * Now it is deprecated and stubbed.
 *
 * @deprecated 3.5.0
 */
function _insert_into_post_button($type)
{
    _deprecated_function(__FUNCTION__, '3.5');
}

WordPress Version: 3.7

/**
 * This was once used to display an 'Insert into Post' button. Now it is deprecated and stubbed.
 *
 * @deprecated 3.5.0
 */
function _insert_into_post_button($type)
{
    _deprecated_function(__FUNCTION__, '3.5');
}