首页 > CMS > Wordpress > 正文

wordpress侧边栏标签get_sidebar

2024-09-07 00:51:12
字体:
来源:转载
供稿:网友

wordpress中get_sidebar是用来调用模板侧边栏文件sidebar.php,如果模板文件中没有侧边栏文件sidebar.php,标签会自动调用程序文件路径wp-includes/theme-compat/sidebar.php中的默认侧边栏文件,我们可以在模板中创建一个sidebar.php文件,然后通过以下代码进行调用.

<?php get_sidebar( $name ); ?>

其中的$name可以支持设置不同的侧边栏文件名称,然后在不同的页面分别调用,例如:

1、在模板中创建 sidebar-left.php 文件,然后可以通过以下代码进行调用:

<?php get_sidebar( 'left' ); ?>  

2、在模板文件中创建 sidebar-right.php 文件,可以通过以下代码进行调用:

<?php get_sidebar( 'right' ); ?>

3、常用判断语句混合用法:

  1. <?php    
  2. if ( is_home() ) ://如果是首页    
  3.     get_sidebar( 'left' );//调用sidebar-left.php文件    
  4. elseif ( is_404() ) ://如果是404页面    
  5.     get_sidebar( 'right' );//调用sidebar-right.php文件    
  6. else ://其他页面    
  7.     get_sidebar();//调用sidebar.php文件    
  8. endif;    
  9. ?> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表