当前位置:首页 > CMS教程 > WordPress > 列表

wordpress侧边栏标签get_sidebar

发布:smiling 来源: PHP粉丝网  添加日期:2014-07-23 17:17:23 浏览: 评论:0 

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. ?> 

Tags: wordpress侧边栏标签 get_sidebar

分享到: