Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Page & Category Menu Bars (http://forum.bytesforall.com/forumdisplay.php?f=10)
-   -   Breadcrumbs on the top of posts or pages is possible? (http://forum.bytesforall.com/showthread.php?t=12863)

mirco65 Feb 17, 2011 02:23 PM

Breadcrumbs on the top of posts or pages is possible?
 
How can I do it? There is a way with atahualpa to have breadcrumbs avaliable?
easy or complicate?

thanks if there are suggestions!

floydfox Feb 23, 2011 06:47 AM

Hi,

i have installed the "Breadcrump NavXT"-Plugin (WP 3.0.5) and have added in "Atahualpa Theme Options" > "Center Column" > "Style and edit CENTER COLUMN" > "Content ABOVE the LOOP" the following code:
Code:

<?php /* Breadcrumb in CENTER COLUMN, nicht auf Startseite */
if ( !is_front_page() ) { ?>
<div class="breadcrumb" style="padding-bottom: 3px;text-color: #336666;">

and at the end:

Code:

</div>
<?php } ?>

so the whole entry there is:

Code:

<?php /* For MULTI post pages if activated at ATO -> Next/Previous Navigation: */
bfa_next_previous_page_links('Top'); ?>

<?php /* For the plugin Page2Cat http://wordpress.org/extend/plugins/page2cat/ */
if( is_category() AND function_exists('page2cat_output')) { page2cat_output($cat); } ?>

<?php /* Breadcrumb in CENTER COLUMN, nicht auf Startseite */
if ( !is_front_page() ) { ?>

<div class="breadcrumb" style="padding-bottom: 3px;text-color: #336666;">
<?php
 if(function_exists('bcn_display'))
 {
    bcn_display();
 }
?>
</div>
<?php } ?>

This shows me the Breadcrump on every page/post but NOT on the Front page of the site.

MG
floydfox


All times are GMT -6. The time now is 05:53 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.