• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn tối ưu hóa thẻ alt cho vbb mọi phiên bản

Admin

Well-Known Member
Staff member
Administrator
Vào includes/class_bbcode.php
Tìm
return '<img src="' . $link . '" border="0" alt="" />';
Thay bằng
return '<img src="' . $link . '" border="0" alt="'.(($GLOBALS['threadinfo']['title'])? $GLOBALS['threadinfo']['title'] : '').'" />';
Áp dụng với các bài mới hoặc bài cũ được edit lại
Nếu xài các mod image resize thì chỉ add thêm vào trong plugin của mod là xong
Ví dụ với MARCO1 Image Resizer-HS Functions
Vào Plugin Manager > MARCO1 Image Resizer-HS Functions > postbit_display_complete
Sửa thành:
if ($vbulletin->options['MARCO1_ResizeHSon'])
{
$post['message'] = preg_replace('/<img src="([^"]*)" border="0" alt="" \/>/', '<a href="\\1" class="highslide" onclick="return hs.expand(this)" ><img src="\\1" border="0" alt="'.(($GLOBALS['threadinfo']['title'])? $GLOBALS['threadinfo']['title'] : '').'" onload="HSImageResizer.createOn(this);" /></a>', $post['message']);
}
Các mod resize khác tìm trong plugin kiểu gì cũng có postbit_display_complete và tự edit cái alt là xong
alt="'.(($GLOBALS['threadinfo']['title'])? $GLOBALS['threadinfo']['title'] : '').'"
Nguồn: Khẳng Định Đẳng Cấp Teen Việt
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top