• Resolved gblsm

    (@gblsm)


    In functions.php, the code of redpro_breadcrumbs() is incorrect.
    current code:

    echo '<li><a href="';
     //echo get_option('home');
     echo home_url();
      _e('Home','redpro');
     echo "</a></li>";

    should be:

    echo '<li><a href="';
    echo home_url();
    echo '">';
    _e('Home','redpro');
    echo "</a></li>";

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘function redpro_breadcrumbs is broken.’ is closed to new replies.