the_attachment_links()WP 2.0.0

Deprecated from version 3.7.0. It is no longer supported and can 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.

Return

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.5.2

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