Guest User

Untitled

a guest
Aug 14th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. function cottoncandy_modify_attachment_link( $markup ) {
  2.     global $post;
  3.     return str_replace( '<a href', '<a class="view" rel="galleryid-'. $post->ID .'" href', $markup );
  4. }
  5. add_filter( 'wp_get_attachment_link', 'cottoncandy_modify_attachment_link' );
Add Comment
Please, Sign In to add comment