'Three Widget Container', 'id' => 'container-one-widget', 'description' => 'Three Widget Container Area', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '', 'after_title' => '
' ));
register_sidebar(array( 'name' => 'Four Widget Container', 'id' => 'container-two-widget', 'description' => 'Four Widget Container Area', 'before_widget' => '', 'after_widget' => '
', 'before_title' => '', 'after_title' => '
' ));
register_sidebar(array( 'name' => 'Five Widget Container', 'id' => 'container-three-widget', 'description' => 'Five Widget Container Area', 'before_widget' => '', 'after_widget' => '
', 'before_title' => '', 'after_title' => '
' ));
register_sidebar(array( 'name' => 'Footer Widgets', 'id' => 'footer-widgets', 'description' => 'Footer Widgets Area', 'before_widget' => '', 'before_title' => '' ));
}
/* PAGE NAVIGATION */ function getpagenavi(){
?>
__('Right Hand Sidebar', 'business_guru') ,'id' => 'sidebar','description' => __('Widgets in this area will be shown on the right-hand side.', 'business_guru') ,'before_title' => '','after_title' => '
','before_widget' => '','after_widget' => '
',));
function the_breadcrumb() {
echo '';
if (!is_home()) {
echo '- ';
echo 'Home';
echo "
";
if (is_category() || is_single()) {
echo '- ';
$category = get_the_category();
if($category[0]){
echo ''.$category[0]->cat_name.'';
}
if (is_single()) {
echo "
- ";
the_title();
echo '
';
}
}
elseif (is_page()) {
echo '- ';
echo the_title();
echo '
';
}
}
elseif (is_tag()) {
single_tag_title();
}
elseif (is_day()) {
echo"- Archive for ";
the_time('F jS, Y');
echo'
';
}
elseif (is_month()) {
echo"- Archive for ";
the_time('F, Y');
echo'
';
}
elseif (is_year()) {
echo"- Archive for ";
the_time('Y');
echo'
';
}
elseif (is_author()) {
echo"- Author Archive";
echo'
';
}
elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {
echo "- Blog Archives";
echo'
';
}
elseif (is_search()) {
echo"- Search Results";
echo'
';
}
echo '
';
}
function mytheme_comment($comment, $args, $depth) {
$GLOBALS['comment'] = $comment;
?>
id="li-comment-">
'.$output.'';
echo $output;
}
?>