Home > Backend Development > PHP Tutorial > 编写PHP脚本使WordPress的主题支持Widget侧边栏

编写PHP脚本使WordPress的主题支持Widget侧边栏

PHPz
Release: 2018-10-11 15:33:49
Original
1041 people have browsed it

帮网友小改了一下主题. 任务比较简单, 只是为一个三栏主题添加对 Widget 的支持而已,就先从这次简单的案例开始说吧.

单侧边栏

functions.php

 '', // widget 的开始标签
 'after_widget' => '', // widget 的结束标签
 'before_title' => '', // 标题的开始标签
 'after_title' => '' // 标题的结束标签
 ));
}
?>
Copy after login

sidebar.php

 标题 1条目 1.1条目 1.2条目 1.3标题 2条目 2.1条目 2.2条目 2.3
Copy after login

双侧边栏

functions.php

 'Sidebar_1', // 侧边栏 1 的名称
 'before_widget' => '', // widget 的开始标签
 'after_widget' => '', // widget 的结束标签
 'before_title' => '', // 标题的开始标签
 'after_title' => '' // 标题的结束标签
 
 ));
 
 register_sidebar(array(
 'name' => 'Sidebar_2', // 侧边栏 2 的名称
 'before_widget' => '', // widget 的开始标签
 'after_widget' => '', // widget 的结束标签
 'before_title' => '', // 标题的开始标签
 'after_title' => '' // 标题的结束标签
 
 ));
}
?>
Copy after login

sidebar.php

标题 1条目 1.1条目 1.2条目 1.3
Copy after login
标题 2条目 2.1条目 2.2条目 2.3
Copy after login

更多相关教程请访问  php编程从入门到精通全套视频教程

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template