蒸馏子比主题论坛 widgets 模块的侧栏注册、页面挂载、版块小工具、帖子列表、话题列表、Ajax 加载和 Tab 切换写法。
蒸馏子比主题论坛 widgets 模块的侧栏注册、页面挂载、版块小工具、帖子列表、话题列表、Ajax 加载和 Tab 切换写法。 #模块边界 论坛小工具不是通用文章小工具的简单复用。它依赖论坛模块的对象、查询、权限和前端列表协议,入口在: txt复制inc/functions/bbs/widgets/widgets.php inc/functions/bbs/widgets/widgets-plate.php inc/functions/bbs/widgets/widgets-posts.php inc/functions/bbs/widgets/widgets-term.php inc/functions/bbs/widgets/widgets-other.php widgets.php 负责引入子文件和注册论坛页面侧栏;widgets-plate.php 负责版块信息、版主和版块列表;widgets-posts.php 负责帖子列表和多 Tab 帖子列表;widgets-term.php 负责话题列表。 论坛小工具只有在论坛模块开启后才会随 inc/functions/bbs/bbs.php 加载。扩展时不要假设 zib_bbs()、plate、forum_post 或论坛模板 Hook 在所有站点都存在。 #侧栏注册 论坛侧栏由 zib_bbs_register_sidebar() 在 widgets_init 中注册: php复制add_action('widgets_init', 'zib_bbs_register_sidebar'); 它把页面和位置组合成侧栏 id