• Resolved eddierosenthal

    (@eddierosenthal)


    my header.php file looks like this
    <?php builder_add_doctype(); ?>

    <?php builder_add_html_tag(); ?>

    <head>

    <?php builder_add_charset(); ?>

    <?php builder_add_title(); ?>

    <?php builder_add_favicon(); ?>

    <?php builder_add_stylesheets(); ?>

    <?php builder_add_scripts(); ?>

    <?php builder_add_meta_data(); ?>

    <?php wp_head(); //we need this for plugins ?>

    </head>

    where should one put the code for installation ie;

    <div class=”breadcrumbs” xmlns:v=”http://rdf.data-vocabulary.org/#”&gt;
    <?php if(function_exists(‘bcn_display’))
    {
    bcn_display();
    }?>
    </div>

    ?

    https://wordpress.org/plugins/breadcrumb-navxt/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author John Havlik

    (@mtekk)

    Given that your theme’s header.php only contains the HTML head (which is a little silly in my opinion as your layout will likely have a common header element used on most/all pages), you may have to add the code for Breadcrumb NavXT in your index.php, single.php, and other template files where you want the breadcrumb trail to be displayed.

    Thread Starter eddierosenthal

    (@eddierosenthal)

    thanks, that is what i did ( right after my question) , and successfully. after that the hard part was figuring out how to style the different sets of css output from the plugin.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘header.php’ is closed to new replies.