2016-05-13 49 views

回答

0

没有测试,但尝试在你的主题添加此向function.php:

add_action('init', 'show_pdf'); 

function show_pdf() { 
    if (is_page($page_id)) { 
     header('Content-type:application/pdf'); 
     header('Cache-Control: no-cache, no-store, must-revalidate'); 
     header('Pragma: no-cache'); 
     header('Expires: 0'); 
     readfile($file_path); 
     exit; 
    } 
} 

,并与页面的ID和$ FILE_PATH与本地路径PDF文件替换$ PAGE_ID 。