'Homepage Sidebar', // The sidebar name to register
'before_widget' => '
',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
));
// A-plus Postpage Sidebar
if(function_exists('register_sidebar'))
register_sidebar(array(
'name' => 'Postpage Sidebar', // The sidebar name to register
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
'after_title' => '
',
));
//breadcrumb for A-plus
function the_breadcrumb() {
if (!is_home()) {
echo '';
bloginfo('name');
echo " >> ";
if (is_category() || is_single()) {
the_category('title_li=');
if (is_single()) {
echo " >> ";
the_title();
}
} elseif (is_page()) {
echo the_title();
}
}
}
//A-plus Social media links
function custom_social_media_links() {
?>