thêm một class tùy ý vào wp_get_attachment_link
Khi ta dung hàm “wp_get_attachment_link” trong wordpress ta không thể thêm class hoặc các thuộc tính khác được, để làm được điều đó tôi có một cách là tào một hàm lọc trong file functions.php, các bạn thêm đoạn code dưới đây và file functions.php
function add_class_attachment_link($html){
$postid = get_the_ID();
$html = str_replace('<a','<a',$html);
return $html;
}
add_filter('wp_get_attachment_link','add_class_attachment_link',10,1);
the most important point here is that the “<a, you can add other attributes such as the” rel “.
now the contacts out ngoiaf used back function “wp_get_attachment_link” see more bee class as you want?
wish you success