面包屑导航
在/wp-content/themes/shouce/header.PHP添加内容如下:
<div class="c"> <?php if (! is_home ()) { ?> <div class="wz"> <a href="<?php bloginfo('url'); ?>">首页</a> <?php if (is_category ()) { single_cat_title (); } elseif (is_search ()) { echo $s; } elseif (is_single ()) { $cat = get_the_category (); $cat = $cat [0]; echo '<a href="' . get_category_link ( $cat ) . '">' . $cat->name . '</a> > 文章内容'; } elseif (is_page ()) { the_title (); } elseif (is_404 ()) { echo '404 错误页面'; } ?> </div> <?php }?> </div>
效果图