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

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

PHPz
PHPzOriginal
2016-05-16 20:03:011042browse

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

单侧边栏

functions.php

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

sidebar.php

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

双侧边栏

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' => '' // 标题的结束标签
 
 ));
}
?>

sidebar.php

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

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

Statement:
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