
cuongpro9x
Cường Nguyễn
Staff member
Moderator
Mình đang dùng theme taigame247 giờ mình muốn hiển thị link down thay vì redirect kiểu gì. Pro Wordpress giúp với. Đây là file template- page-download.php
PHP:
<?php
/**
* Template Name: Download Page
*
* Created By DinhQuocHan
*/
$IDThePost=intval($_GET['id']);
$link=get_post_meta($IDThePost,'bbit_link_download',true);
/*if (preg_match('//', $link)) {
echo '<title>Top ứng dụng hot nhất</title>';
echo '<center>Chúng tôi tạm ngưng phân phối game này</center>';
echo '<script type="text/javascript" src="http://api.adflex.vn/web.php?refcode=khuedaik&banner_type=adwall&text=1&adNumber=10"></script>'; exit;
} else*/
if($link){
wp_redirect($link); exit;
}
wp_redirect(home_url('404') ); exit;