外贸营销

wordpress企业主题面包屑导航终极写法
2019.09.06 外贸营销

wordpress企业主题面包屑导航终极写法:我们在制作wordpress企业主题的时候,往往需要面包屑导航,以往我们只是简单的用一些代码来调用,文章页和分类页以及独立页面的面包屑导航写法都不一样,这给wordpress主题网站制作带来麻烦,有米有一种简单的代码自己判断是否为文章或者分类,然后智能显示面包屑导航呢?奥夫今天给大家分享一段wordpress企业主题面包屑导航终极写法:

<div class=”position”>
当前位置:<a href=”<?php bloginfo(‘url’); ?>”><?php bloginfo(‘name’); ?></a> >
<?php if( is_single() ){ $categorys = get_the_category(); $category = $categorys[0]; echo( get_category_parents($category->term_id,true,’ >’) );echo $s.’ 查看文章’; }
elseif ( is_page() ){ the_title(); }
elseif ( is_category() ){ single_cat_title(); }
elseif ( is_tag() ){ single_tag_title(); }
elseif ( is_day() ){ the_time(‘Y年Fj日’); }
elseif ( is_month() ){ the_time(‘Y年F’); }
elseif ( is_year() ){ the_time(‘Y年’); }
elseif ( is_search() ){ echo $s.’ 的搜索结果’; } ?>
</div>

上一篇下一篇
标签

有问
必答