the_attachment_links()WP 2.0.0

Deprecated since 3.7.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.

This was once used to display attachment links. Now it is deprecated and stubbed.

No Hooks.

Returns

null. Nothing (null).

Usage

the_attachment_links( $id );
$id(int|true|false)
.
Default: false

Changelog

Since 2.0.0 Introduced.
Deprecated since 3.7.0

the_attachment_links() code WP 6.8.1

function the_attachment_links( $id = false ) {
	_deprecated_function( __FUNCTION__, '3.7.0' );
}