Hi, again!
I would like that the way that appears in footer page…
Sreenshot example:

…shows up at the title of the article:
Screenshot example (this is a Photoshop montage):

And, the category links…
Screenshot example:

…i would like them to show below the article:
Screenshot example (again this is a Photoshop montage):

would it be possible?
Tks!
Issue1: To make the breadcrumbs section shows up at the title of the article, you can open the content-single.php file, add the following code under line 8.
<div class="span9"><?php dw_breadcrumb(); ?></div>
Then add the following code to the style.css file:
.site-content .post .breadcrumbs {
margin: 0;
margin-left: -40px;
list-style: none;
}
.site-content .post .breadcrumbs li {
background-image: url(assets/img/arrow-right-222.png);
}
.site-content .post .breadcrumbs li {
display: inline-block;
padding: 0 0 0 10px;
margin: 0 5px 0 0;
background: url(assets/img/arrow-right.png) no-repeat left 8px;
}
Issue2: If you would like the categories link to show below the article, you can add the following code under line 27.
<div class="entry-meta">
<?php echo get_the_category_list(); ?>
</div>
Hope this helps !
Yes Dominic you are great, nice one Results
Please login or Register to submit your answer