opensource
New Member
Hi
I have used the theme starker which is the blank naked theme.
They have their latest ver. as 2012.
I have successfully designed a theme using their old version.
Just a thought if anyone here too have used their new version.
Anyway, i have a problem about the sidebar. It successfully appears
in my page but in my dashboard Appearance->Widget, it's not visible.
I wonder why it didn't appear. I just want to remove the features from
my sidebar that appears in my page like the blogroll, categories, archives
and page links etc. And i want to replace it a new twitter widgets.
But the problem is, i can't modify the visible sidebar in my pages.
In my funtion.php, there is widget visible but in my dashboard but none
of my present sidebar from pages appears in this current sidebar that
my line of codes is
Then in my wp index.php, i call the sidebar for my theme.
Any advice guys on what to add at the line that my widgets sidebar will be visible. I feel that there is something missing.
I'll attach screen shot so you may understand what i want
And this is my page which has the visible sidebar
I have used the theme starker which is the blank naked theme.
They have their latest ver. as 2012.
I have successfully designed a theme using their old version.
Just a thought if anyone here too have used their new version.
Anyway, i have a problem about the sidebar. It successfully appears
in my page but in my dashboard Appearance->Widget, it's not visible.
I wonder why it didn't appear. I just want to remove the features from
my sidebar that appears in my page like the blogroll, categories, archives
and page links etc. And i want to replace it a new twitter widgets.
But the problem is, i can't modify the visible sidebar in my pages.
In my funtion.php, there is widget visible but in my dashboard but none
of my present sidebar from pages appears in this current sidebar that
my line of codes is
Code:
function arphabet_widgets_init() {
register_sidebar( array(
'name' => 'Home right sidebar',
'id' => 'home_right_1',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2 class="rounded">',
'after_title' => '</h2>',
) );
}
add_action( 'widgets_init', 'arphabet_widgets_init' );
?>
Then in my wp index.php, i call the sidebar for my theme.
Code:
<?php get_sidebar(); ?>
Any advice guys on what to add at the line that my widgets sidebar will be visible. I feel that there is something missing.
I'll attach screen shot so you may understand what i want
And this is my page which has the visible sidebar
Last edited: