WordPress函数 get_sidebar()

WordPress函数 get_sidebar()

介绍

主题边栏模板调用函数,可以调用一些特别的边栏”sidebar-special.php”,如这样。

参数

$name
(string) (Optional) The name of the specialised sidebar.
Default value: null

示例

调用你主题中 wp-content/yourTheme/sidebar-nice-bar.php 文件,可以使用

<?php get_sidebar('nice-bar'); ?>

多个不同的边栏

<?php
if ( is_home() ) :
  get_sidebar( 'home' );
elseif ( is_404() ) :
  get_sidebar( '404' );
else :
  get_sidebar();
endif;
?>

首页显示 sidebar-home.php的内容,404页面显示 sidebar-404.php的内容,其他页面显示 sidebar.php的内容。

一个简单的404页面

<?php get_header(); ?>
<h2>Error 404 - Not Found</h2>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
版权声明
转载请注明本文来源:WordPress函数 get_sidebar()
转载请注明本文地址:https://www.e363.com/1111.html
THE END
喜欢龙网的内容,就支持一下吧!
点赞71赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容