1 Star 4 Fork 1

gallanthunter/wp-theme-beginner

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sidebar.php 904 Bytes
一键复制 编辑 原始数据 按行查看 历史
gallanthunter 提交于 2023-01-27 22:18 . 修复部分问题
<?php
/*
* @Filename : sidebar.php
* @Description :
* @Author : Zhang Zhijun <gallanthunter@163.com>
* @Copyright : Copyright (c) 2022 by chahuawu.com, All Rights Reserved.
* @License : Mulan PubL v2
* @Link : https://chahuawu.com
* @CreateTime : 2022-12-17 20:57:43
* @LastModifyTime: 2023-01-27 22:15:54
*/
?>
<?php
if (function_exists('dynamic_sidebar') && dynamic_sidebar('widget_sitesidebar')) : endif;
if (is_single()) {
if (function_exists('dynamic_sidebar') && dynamic_sidebar('widget_postsidebar')) : endif;
} else if (is_page()) {
if (function_exists('dynamic_sidebar') && dynamic_sidebar('widget_pagesidebar')) : endif;
} else if (is_home()) {
if (function_exists('dynamic_sidebar') && dynamic_sidebar('widget_sidebar')) : endif;
} else {
if (function_exists('dynamic_sidebar') && dynamic_sidebar('widget_othersidebar')) : endif;
}
?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/gallanthunter/wp-theme-beginner.git
git@gitee.com:gallanthunter/wp-theme-beginner.git
gallanthunter
wp-theme-beginner
wp-theme-beginner
master

搜索帮助