例如添加头像框功能
1,电脑端模板\wp-content\themes\LightSNS\page下面创建一个页面例如txk.php
<?php /* Template Name:头像框商城 Module Name:头像框商城 Author Name:Zachary Version:1.0 */
页面中写入这个代码然后就可以编写自己的页面了,然后在后台创建一个页面模板使用你刚才创建的模板
2,如果你使用数据库那就按照你的数据库来,如果你使用的是lightsns后台添加头像框功能那么要在option.php中添加对应的节点
3,手机端模板添加页面\wp-content\themes\LightSNS\mobile\templates\page一样的编写自己的代码
手机端还要在\wp-content\themes\LightSNS\mobile\templates\page\post-page.php中添加判断代码例如,你添加了txk.php就要在里面添加
else if ($page_template == 'page/txk.php') { require(get_template_directory() . '/mobile/templates/page/txk.php'); }
这种代码
好了今天就到这里
请登录之后再进行评论