Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Suggestion: Remove Attachment Page URL

$
0
0

Replies: 0

Although this plugin redirects the attachment page to its parent post or file URL, WordPress still provides the attachment page pretty URLs on the media library and media insertion dialog. Can you implement a function that removes this URL as well?

function remove_attachment_page_link( $link ) {
    return;
}
add_filter( 'attachment_link', 'remove_attachment_page_link' )

In this way, if a user selects “Link to attachment page” when inserting an attachment file, the attachment file will be inserted without the link.


Viewing all articles
Browse latest Browse all 59525

Trending Articles