• 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ạo trang chuyển link cho wp

Admin

Well-Known Member
Staff member
Administrator
Bạn có thể làm theo các bước sau mà không cần dùng Plugin gì cả:


1. Replace hết các link trong bài viết thành http://domain.com/go.php?u=<link gốc>


Bạn thêm vào file function.php của theme đoạn sau:


PHP:
function tuoitrevn_filter_content($content) {
    $new_content = str_replace('href="', 'href="http://domain.com/go.php?u=', $content);
    return $new_content;
}
add_filter('the_content', 'tuoitrevn_filter_content');


2. Tạo 1 file go.php ở thư mục gốc cài đặt wp với nội dung sau:


PHP:
<html><head></head><body><center><?php $gourl = $_GET['u']; ?><iframe name="cwindow" style="border: 0pt none;" src="<?php echo $gourl; ?>" rel="nofollow" height="100%" scrolling="AUTO" width="100%"></iframe></center></body></html>

Trong file go.php này bạn muốn trình bày gì thêm cũng được.
Xong
 

Facebook Comments

New posts New threads New resources

Back
Top