Adding Home and Category Link in Page/Post Tilte.
I want to show any single post permalink at to of the post as Home\Category Name\Post title. But Catch Katmundu Show only Post Title.
<header class="entry-header">
<h1 class="entry-title">
[[ I want to show here = Home(what attribute here for home link?)\Category-Name(what attribute here for category linked?)\<?php the_title(); ?>]]
" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catch-kathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?> </h1>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php catchkathmandu_header_meta(); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header><!-- .entry-header -->
How can solve this problem? Please help me.