如何添加面包屑菜单

时间:2015-06-08 08:46:33

标签: wordpress wordpress-plugin breadcrumbs

如何添加面包屑菜单的链接?我的菜单中有一个链接。但它并没有印在我的面包屑上。我在wordpress中使用Breadcrumb NavXT插件。

1 个答案:

答案 0 :(得分:1)

您可以在不使用任何插件的情况下添加面包屑。请将以下代码添加到主题functions.php文件中。

function breadcrumbs($id = null){
?>
<div id="breadcrumbs">
    <a href="<?php bloginfo('url'); ?>">Home</a></span> >
    <?php if(!empty($id)): ?>
    <a href="<?php echo get_permalink( $id ); ?>" ><?php echo get_the_title( $id ); ?></a> >
    <?php endif; ?>
    <span class="breadcrumb_last"><?php the_title(); ?></span>
</div>
<?php }

现在,只要你想添加breadcrumb,就像这样调用这个函数。

<?php breadcrumbs(); ?>

或者,如果有任何内页,如子页面或单页,您只能传递父页面ID。

<?php breadcrumbs($id); ?>