phpcms v9手機門戶網(wǎng)站用的人比較少,所有官網(wǎng)也沒有太多的介紹,phpcms v9手機門戶是不支持單頁面的調(diào)用,今天給大家介紹一下如何調(diào)取phpcms v9手機門戶網(wǎng)站的單頁。
首先打開\phpcms\modules\wap\index.php,第283行左右,增加控制器函數(shù)
//單頁面 function page() { $WAP = $this->wap; $TYPE = $this->types; $WAP_SETTING = string2array($WAP['setting']); $GLOBALS['siteid'] = max($this->siteid,1); $catid = intval($_GET['catid']); if(!$catid) exit(L('parameter_error')); $this->page_db = pc_base::load_model('page_model'); $data = $this->page_db->get_one(array('catid'=>$catid)); if(!$data) showmessage(L('info_does_not_exists'),'blank'); extract($data); include template('wap', 'page'); }
(2)在手機模板文件夾里邊(\phpcms\templates\default\wap)新增page.html,就行pc站調(diào)用內(nèi)容一樣,直接使用pc站的代碼調(diào)用,比如:{$title}、{$content}等
(3)導(dǎo)航處調(diào)用該欄目的鏈接為:{WAP_SITEURL}&a=page&catid=3 (catid=3 此處直接填寫pc站該欄目對應(yīng)的catid即可)
這樣就完成了phocms手機門戶的單頁。
上一篇: PHPCMS v9手機門戶域名綁定
下一篇: 如何操作網(wǎng)站后臺